Computational Chemistry Input Generator
Project description
Computational Chemistry Input Generator
ccinput
is an application to generate input files for computational chemistry software.
Example usage:
$ ccinput gaussian opt M062X -bs def2tzvp -f ethanol.xyz -n 8 --mem 32G
%chk=calc.chk
%nproc=8
%mem=32000MB
#p opt M062X/Def2TZVP
File created by ccinput
0 1
C -1.31970000 -0.64380000 0.00000000
H -0.96310000 -1.65260000 0.00000000
H -0.96310000 -0.13940000 -0.87370000
H -2.38970000 -0.64380000 0.00000000
C -0.80640000 0.08220000 1.25740000
H -1.16150000 1.09160000 1.25640000
H -1.16470000 -0.42110000 2.13110000
O 0.62360000 0.07990000 1.25870000
H 0.94410000 0.53240000 2.04240000
ccinput
can also be used as python library:
>>> from ccinput.wrapper import gen_input
>>> inp = gen_input(software="orca", type="ts", method="PBEh-3c", file="ethanol.xyz", nproc=16, solvent="ethanol", solvation_model="SMD")
*** No solvation radii specified; using default radii ***
>>> print(inp)
!OPTTS PBEh-3c
*xyz 0 1
C -1.31970000 -0.64380000 0.00000000
H -0.96310000 -1.65260000 0.00000000
H -0.96310000 -0.13940000 -0.87370000
H -2.38970000 -0.64380000 0.00000000
C -0.80640000 0.08220000 1.25740000
H -1.16150000 1.09160000 1.25640000
H -1.16470000 -0.42110000 2.13110000
O 0.62360000 0.07990000 1.25870000
H 0.94410000 0.53240000 2.04240000
*
%pal
nprocs 16
end
%cpcm
smd true
SMDsolvent "ethanol"
end
>>>
Installation
From PyPI
pip install ccinput
From Github
You can install the bleeding-edge version of ccinput
from Github:
pip install git+https://github.com/cyllab/ccinput
Usage
ccinput
supports a wide range of options, including different solvation radii, density fitting and multiple basis sets. As of now, Gaussian 16 and ORCA 5 are supported, and more packages will be added in the future.
From the command line
Simply use the ccinput
command with the desired parameters:
usage: ccinput [-h] [--basis_set BASIS_SET] [--solvent SOLVENT] [--solvation_model SOLVATION_MODEL]
[--solvation_radii SOLVATION_RADII] [--custom_solvation_radii CUSTOM_SOLVATION_RADII]
[--specifications SPECIFICATIONS] [--density_fitting DENSITY_FITTING]
[--custom_basis_sets CUSTOM_BASIS_SETS] [--xyz XYZ] [--file FILE] [--output OUTPUT]
[--constraints CONSTRAINTS] [--freeze ATOM [ATOM ...]] [--scan ATOM [ATOM ...]]
[--from FROM] [--to TO] [--nsteps NSTEPS] [--step STEP] [--nproc NPROC] [--mem MEM]
[--charge CHARGE] [--mult MULT] [--d3 | --d3bj] [--name NAME] [--aux_name AUX_NAME]
[--header HEADER] [--version]
software type method
More detailed information about each option can be obtained with the ccinput -h
command.
As Python library
The function gen_input
returns input files as a single strings with the correct whitespace.
>>> from ccinput.wrapper import gen_input
>>> inp = gen_input(...)
The input can also be directly written to a file using write_input
.
>>> from ccinput.wrapper import write_input
>>> write_input(filename, ...)
See the documentation for all options.
Contributing
We welcome all contributions to the project. This includes:
- Support for new packages (even if rudimentary)
- Support for new features of supported packages
- Correction or improvement of static data (like DFT functionals or basis sets)
Planned tasks are listed in the roadmap. This can be a good place to start when looking to contribute, although do not limit yourself to what is listed there. The contribution guidelines are detailed in CONTRIBUTING.md.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ccinput-1.4.4.tar.gz
.
File metadata
- Download URL: ccinput-1.4.4.tar.gz
- Upload date:
- Size: 74.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98e7af0d721367c793cdfe379c6a98fc6f29d1b528d31ca4df27b94fa120e7fa |
|
MD5 | c933baf0c1f937a37f201e12184b777f |
|
BLAKE2b-256 | 6ad1c07e1a500dbbd6a04de5d751020dfc20330f9c9f425f55d1b4e8060b352a |
File details
Details for the file ccinput-1.4.4-py3-none-any.whl
.
File metadata
- Download URL: ccinput-1.4.4-py3-none-any.whl
- Upload date:
- Size: 62.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad0a5700bc4ee4ea6eddd709f4075637955b4b760b6c2480760b6dd9e5d76ea9 |
|
MD5 | 73bcc1748a43659fcf71cfaa66cc8ec3 |
|
BLAKE2b-256 | 03b2ee073e42b7e1eb3f107f0204011bcec0b10088c1132e89e31ee714da5033 |