Skip to main content

Release PyPI

Docs status Pipeline Status Coverage Status

DOI

AiiDA ChemShell

An AiiDA plugin for the ChemShell multiscale computational chemistry software package.

Installation

This plugin is available through PyPI and should be installed using pip python package manager.

pip install aiida-chemshell 

Requirements

To use this plugin a configured AiiDA profile and computer configuration are required, see the AiiDa documentation for instructions on how to install and configure AiiDA.

Setup

To configure the ChemShell plugin an AiiDA code instance needs to be configured for the ChemShell executable. The following is an example of a basic YAML configuration file:

label: chemsh
description: ChemShell 
computer: localhost 
filepath_executable: /absolute/path/to/chemsh
default_calc_job_plugin: chemshell
use_double_quotes: false 
with_mpi: false 
prepend_text: '' 
append_text: '' 

Write this to a file named chemshell.yml ensuring the value for computer matches the label of your computer configured in the previous step. The code can then be configured by running:

verdi code create core.code.installed --config chemshell.yml -n 

If successful this will have created a code with the label chemsh which can then be used to run ChemShell jobs within the AiiDA workflow.

ChemShell with MPI

It is important to note that the configuration of an MPI enabled ChemShell code differs slightly depending on whether the code instance uses the chemsh or chemsh.x executable. If you have a parallel (MPI enabled) build of ChemShell but are using the chemsh wrapper executable please set with_mpi: false as the underlying plugin will handle how to call the mpi runtime. If you are calling the chemsh.x executable directly then with_mpi: true is required to run parallel jobs.

Examples

QM Based Single Point Energy

The following is a python script that will run a Quantum Mechanics based single point energy calculation using the NWChem ChemShell interface. The associated structure file can be found in the tests/data/ folder.

from aiida.engine import run 
from aiida.orm import load_code, SinglefileData, Dict
from aiida import load_profile 

load_profile("user_profile")  # This is not required if running in a verdi shell environment 

builder = load_code("chemsh").get_builder() 
builder.structure = SinglefileData(file="/absolute/path/to/water.cjson")
builder.qm_parameters = Dict({"theory": "NWChem", "method": "HF", "basis": "3-21G"})
builder.calculation_parameters = Dict({"gradients": False, "hessian": False})

results, node = run.get_node(builder)

print("Final Energy = ", results.get("energy"))

This can either be run as a script or as directly within a verdi shell python environment.

QM/MM Based Geometry Optimisation

The following is a python script that will run a combined QM/MM based geometry optimisation using the NWChem and DL_POLY ChemShell interfaces. The associated structure and force field files can be found in the tests/data/ folder.

from aiida.engine import run 
from aiida.orm import load_code, SinglefileData, Dict
from aiida import load_profile 

load_profile("user_profile")  # This is not required if running in a verdi shell environment 

builder = load_code("chemsh").get_builder()
builder.structure = SinglefileData(file="/absolute/path/to/h2o_dimer.cjson")
builder.qm_parameters = Dict({"theory": "NWChem", "method": "DFT", "basis": "6-31G"})
builder.mm_parameters = Dict({"theory": "DL_POLY"})
builder.force_field_file = SinglefileData(file="/absolute/path/to/h2o_dimer.ff")
builder.optimisation_parameters = Dict({"algorithm": "lbfgs", "maxcyle": 100})

results, node = run.get_node(builder)

print("Final Energy = ", result.get("energy"))

This can either be run as a script or as directly within a verdi shell python environment.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiida_chemshell-0.2.1.tar.gz (35.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aiida_chemshell-0.2.1-py3-none-any.whl (32.5 kB view details)

Uploaded Python 3

File details

Details for the file aiida_chemshell-0.2.1.tar.gz.

File metadata

  • Download URL: aiida_chemshell-0.2.1.tar.gz
  • Upload date:
  • Size: 35.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for aiida_chemshell-0.2.1.tar.gz
Algorithm Hash digest
SHA256 d1a897f3d2af5b1b42ad68ee73b151f85b69a9b1ce958ba666ab11674870d123
MD5 8fa6e36caf40873dcf6a60274aca8713
BLAKE2b-256 db7fd8c182926d3160927b93b34b374eb71e463baff7be41f8d50ca76c4752c7

See more details on using hashes here.

File details

Details for the file aiida_chemshell-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: aiida_chemshell-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 32.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for aiida_chemshell-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6bf04ad5c9054674b1c8e4fce11d64e9c085fe17247a01efce09ca2dffbed505
MD5 5501f53bdda973096f09fc684ee0f73e
BLAKE2b-256 ec3d23db5229454b999a287ec9f5808c8537bda32be493d98c97c5595ef9f415

See more details on using hashes here.

Release history Release notifications | RSS feed

0.2.2

2 files

This release

0.2.1 This release

2 files

0.2.0

2 files

0.1.13

2 files

0.1.10

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page