kinisot


Namekinisot JSON
Version 2.0.2 PyPI version JSON
download
home_pagehttps://github.com/patonlab/kinisot
SummaryCompute Kinetic and Equibrium Isotope Effects from compchem outputs
upload_time2023-12-19 02:09:08
maintainer
docs_urlNone
authorPaton Research Group
requires_python>=3.0
license
keywords compchem kie eqe dft vibrational-scaling-factors kinisot frequencies
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            ![Kinisot Banner](kinisot_banner.png)

[![DOI](https://zenodo.org/badge/54840251.svg)](https://zenodo.org/badge/latestdoi/54840251)
[![PyPI version](https://badge.fury.io/py/kinisot.svg)](https://badge.fury.io/py/kinisot)
[![Build Status](https://app.travis-ci.com/patonlab/Kinisot.svg?branch=master)](https://app.travis-ci.com/github/patonlab/Kinisot)

***
## Introduction

**Kinisot** is a Python program to compute kinetic isotope effects from two Gaussian output files, one of which is a ground state and the other a transition state. It is developed in the [Paton research group](https://patonlab.colostate.edu) at Colorado State University.

This is a Python version of [Kinisot](http://dx.doi.org/10.5281/zenodo.19272), inspired by the Fortran version originally written by [Henry Rzepa](https://en.wikipedia.org/wiki/Henry_Rzepa). This version does not require parameter files to run and allows easy manipulation of temperature and [vibrational scaling factors](http://t1.chem.umn.edu/freqscale/index.html). The level of theory and basis set are detected from in the output files and the program will attempt to assign the appropriate scaling factor based on data from the [Truhlar group](https://t1.chem.umn.edu/freqscale/index.html). Isotopic substitutions are to be specified by the command line, such that separate computations with Gaussian are not required. The program diagonalizes the mass-weighted Hessian matricies to obtain harmonic vibrational frequencies and Bigeleisen-Mayer Reduced Isotopic Partition Function Ratios. One difference with the Gaussian program itself is that the lowest five/six normal modes (translations and rotations) are not projected out, however, this is also the approach taken by [quiver](https://github.com/ekwan/quiver). Testing  this approach against calculation of the Reduced Isotopic Partition Function Ratios by hand (!) using the frequencies in the Gaussian output files led to agreeement up to 4DP. A one-dimensional tunneling correction is also included, which is the Bell infinite-parabola model.

Also see related discussions on [computing KIE values](http://www.ch.imperial.ac.uk/rzepa/blog/?p=14327)

The current version is currently hard-coded to consider <sup>2</sup>D/<sup>1</sup>H, <sup>13</sup>C/<sup>12</sup>C and <sup>17</sup>O/<sup>16</sup>O isotopic replacements. This can be modified in Hess_to_Freq.py.

A video guide to using an older version this software is available at Youtube:

[![Kinisot Video Guide](http://img.youtube.com/vi/r4x2gmkc0U8/0.jpg)](http://www.youtube.com/watch?v=r4x2gmkc0U8)


## Installation

To install **Kinisot** with [conda](https://anaconda.org/conda-forge/kinisot) or [pipy]():
```
conda install kinisot -c conda-forge
pip install kinisot
```

## Usage

```python
python -m kinisot --rct reactant_output --ts ts_output --iso 1,2,3 (-t temperature) (-s scalefactor)  
```
*	The two output files contain Gaussian frequency calculations performed for the reactant and transition state at the same level of theory.
*	The `--iso` flag is required and specifies a string of atom number(s) which are to be substituted for heavier isotopes. Multiple atom numbers require quotation marks and are separated by spaces.
*	The `-t` option specifies temperature (in Kelvin). N.B. This does not have to correspond to the temperature used in the Gaussian calculation since the Reduced Isotopic Partition Function Ratios are evalulated at the requested temperature. The default value is 298.15 K.
*	The `-s` option is a scaling factor for vibrational frequencies. Empirical scaling factors have been determined for several functional/basis set combinations, and these are applied automatically using values from the Truhlar group based on detection of the level of theory and basis set in the output files. The ZPE-scaling factors are selected if available. The default value when no scaling factor is available is 1 (no scale factor).

See examples/ for more examples



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/patonlab/kinisot",
    "name": "kinisot",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.0",
    "maintainer_email": "",
    "keywords": "compchem,kie,eqe,dft,vibrational-scaling-factors,kinisot,frequencies",
    "author": "Paton Research Group",
    "author_email": "patonlab@colostate.edu",
    "download_url": "https://files.pythonhosted.org/packages/49/44/0d62a85bc12eba39615582e5f73ffbffa098501d9e4541e30ff95e4e1b17/kinisot-2.0.2.tar.gz",
    "platform": null,
    "description": "![Kinisot Banner](kinisot_banner.png)\n\n[![DOI](https://zenodo.org/badge/54840251.svg)](https://zenodo.org/badge/latestdoi/54840251)\n[![PyPI version](https://badge.fury.io/py/kinisot.svg)](https://badge.fury.io/py/kinisot)\n[![Build Status](https://app.travis-ci.com/patonlab/Kinisot.svg?branch=master)](https://app.travis-ci.com/github/patonlab/Kinisot)\n\n***\n## Introduction\n\n**Kinisot** is a Python program to compute kinetic isotope effects from two Gaussian output files, one of which is a ground state and the other a transition state. It is developed in the [Paton research group](https://patonlab.colostate.edu) at Colorado State University.\n\nThis is a Python version of [Kinisot](http://dx.doi.org/10.5281/zenodo.19272), inspired by the Fortran version originally written by [Henry Rzepa](https://en.wikipedia.org/wiki/Henry_Rzepa). This version does not require parameter files to run and allows easy manipulation of temperature and [vibrational scaling factors](http://t1.chem.umn.edu/freqscale/index.html). The level of theory and basis set are detected from in the output files and the program will attempt to assign the appropriate scaling factor based on data from the [Truhlar group](https://t1.chem.umn.edu/freqscale/index.html). Isotopic substitutions are to be specified by the command line, such that separate computations with Gaussian are not required. The program diagonalizes the mass-weighted Hessian matricies to obtain harmonic vibrational frequencies and Bigeleisen-Mayer Reduced Isotopic Partition Function Ratios. One difference with the Gaussian program itself is that the lowest five/six normal modes (translations and rotations) are not projected out, however, this is also the approach taken by [quiver](https://github.com/ekwan/quiver). Testing  this approach against calculation of the Reduced Isotopic Partition Function Ratios by hand (!) using the frequencies in the Gaussian output files led to agreeement up to 4DP. A one-dimensional tunneling correction is also included, which is the Bell infinite-parabola model.\n\nAlso see related discussions on [computing KIE values](http://www.ch.imperial.ac.uk/rzepa/blog/?p=14327)\n\nThe current version is currently hard-coded to consider <sup>2</sup>D/<sup>1</sup>H, <sup>13</sup>C/<sup>12</sup>C and <sup>17</sup>O/<sup>16</sup>O isotopic replacements. This can be modified in Hess_to_Freq.py.\n\nA video guide to using an older version this software is available at Youtube:\n\n[![Kinisot Video Guide](http://img.youtube.com/vi/r4x2gmkc0U8/0.jpg)](http://www.youtube.com/watch?v=r4x2gmkc0U8)\n\n\n## Installation\n\nTo install **Kinisot** with [conda](https://anaconda.org/conda-forge/kinisot) or [pipy]():\n```\nconda install kinisot -c conda-forge\npip install kinisot\n```\n\n## Usage\n\n```python\npython -m kinisot --rct reactant_output --ts ts_output --iso 1,2,3 (-t temperature) (-s scalefactor)  \n```\n*\tThe two output files contain Gaussian frequency calculations performed for the reactant and transition state at the same level of theory.\n*\tThe `--iso` flag is required and specifies a string of atom number(s) which are to be substituted for heavier isotopes. Multiple atom numbers require quotation marks and are separated by spaces.\n*\tThe `-t` option specifies temperature (in Kelvin). N.B. This does not have to correspond to the temperature used in the Gaussian calculation since the Reduced Isotopic Partition Function Ratios are evalulated at the requested temperature. The default value is 298.15 K.\n*\tThe `-s` option is a scaling factor for vibrational frequencies. Empirical scaling factors have been determined for several functional/basis set combinations, and these are applied automatically using values from the Truhlar group based on detection of the level of theory and basis set in the output files. The ZPE-scaling factors are selected if available. The default value when no scaling factor is available is 1 (no scale factor).\n\nSee examples/ for more examples\n\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Compute Kinetic and Equibrium Isotope Effects from compchem outputs",
    "version": "2.0.2",
    "project_urls": {
        "Download": "https://github.com/patonlab/Kinisot/archive/refs/tags/v2.0.2.zip",
        "Homepage": "https://github.com/patonlab/kinisot"
    },
    "split_keywords": [
        "compchem",
        "kie",
        "eqe",
        "dft",
        "vibrational-scaling-factors",
        "kinisot",
        "frequencies"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49440d62a85bc12eba39615582e5f73ffbffa098501d9e4541e30ff95e4e1b17",
                "md5": "21ef5330df598e140dd2bfaf8f9673de",
                "sha256": "0a37f1efe3810d3bff13e288b378f3c9cf9e65eca85d31c7aa679570cca78399"
            },
            "downloads": -1,
            "filename": "kinisot-2.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "21ef5330df598e140dd2bfaf8f9673de",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.0",
            "size": 676549,
            "upload_time": "2023-12-19T02:09:08",
            "upload_time_iso_8601": "2023-12-19T02:09:08.426745Z",
            "url": "https://files.pythonhosted.org/packages/49/44/0d62a85bc12eba39615582e5f73ffbffa098501d9e4541e30ff95e4e1b17/kinisot-2.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-19 02:09:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "patonlab",
    "github_project": "kinisot",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "kinisot"
}
        
Elapsed time: 0.15594s