All plugins

aiida-chemshell

AiiDA workflow plugin for the ChemShell chemical modelling software package

status stable AiiDA >=2.6

General information

Install pip install aiida-chemshell
Python import import aiida_chemshell
Latest version 0.1.10
Released 2026-03-04

Registry checks

All checks passed

Plugins provided

Calculations 1 Parsers 1 Workflows 1

Entry points

CalcJobs and calculation functions aiida.calculations
  • chemshell

    class: aiida_chemshell.calculations.base:ChemShellCalculation

    AiiDA calculation plugin wrapper for ChemShell calculations. Currently supports the following tasks: - Single point energy - Geometry optimisation

    InputRequiredValid typesDescription
    structure true SinglefileData, StructureData The input structure for the ChemShell calculation either containedwithin an '.xyz', '.pun' or '.cjson' file or as a StructureDatainstance.
    calculation_parameters false Dict, NoneType A dictionary of parameters for the ChemShell Task object.
    code false AbstractCode, NoneType The `Code` to use for this job. This input is required, unless the `remote_folder` input is specified, which means an existing job is being imported and no code will actually be run.
    force_field_file false SinglefileData, NoneType A file containing the force field parameters for the ChemShell MM interface.
    metadata false
    mm_parameters false Dict, NoneType A dictionary of parameters for the ChemShell MM interface.
    monitors false Dict Add monitoring functions that can inspect output files while the job is running and decide to prematurely terminate the job.
    optimisation_parameters false Dict, NoneType A dictionary of parameters for the ChemShell geometry optimisation task. If this input is provided, a geometry optimisation task will be configured and added to this job.
    qm_parameters false Dict, NoneType A dictionary of parameters for to be passed to the Theory object for the ChemShell calculation.
    qmmm_parameters false Dict, NoneType A dictionary of parameters for the ChemShell QM/MM interface.
    remote_folder false RemoteData, NoneType Remote directory containing the results of an already completed calculation job without AiiDA. The inputs should be passed to the `CalcJob` as normal but instead of launching the actual job, the engine will recreate the input files and then proceed straight to the retrieve step where the files of this `RemoteData` will be retrieved as if it had been actually launched through AiiDA. If a parser is defined in the inputs, the results are parsed and attached as output nodes as usual.
    OutputRequiredValid typesDescription
    energy true Float The total energy of the system.
    remote_folder true RemoteData Input files necessary to run the process will be stored in this folder node.
    retrieved true FolderData Files that are retrieved by the daemon will be stored in this node. By default the stdout and stderr of the scheduler will be added, but one can add more by specifying them in `CalcInfo.retrieve_list`.
    gradients false ArrayData The gradients (and hessian) of the system if requested. The gradients are contained within an AiiDA ArrayData object with the key 'gradients'.
    optimised_structure false SinglefileData The optimised structure of the given system, if a geometry optimisation task was configured and successfully completed. The structure is contained within a ChemShell '.pun' file.
    remote_stash false RemoteStashData Contents of the `stash.source_list` option are stored in this remote folder after job completion.
    vibrational_energies false Dict The calculated thermochemical properties of the system.
    vibrational_modes false ArrayData The calculated vibrational modes of the system.
    Exit statusMessage
    1 The process has failed with an unspecified error.
    2 The process failed with legacy failure mode.
    10 The process returned an invalid output.
    11 The process did not register a required output.
    100 The process did not have the required `retrieved` output.
    110 The job ran out of memory.
    120 The job ran out of walltime.
    131 The specified account is invalid.
    140 The node running the job failed.
    150 {message}
    300 Error accessing the `output.log` ChemShell output file.
    301 ChemShell calculation failed to compute a final energy for the given task.
    302 ChemShell failed to produced the expected optimised structure file.
    303 ChemShell calculation failed to produce the expected results file.
    304 ChemShell calculation failed to compute the requested gradients or hessian for the given task.
CalcJob parsers aiida.parsers
  • chemshell

    aiida_chemshell.parsers.base:ChemShellParser
WorkChains and work functions aiida.workflows
  • chemshell.opt

    class: aiida_chemshell.workflows.optimisation:GeometryOptimisationWorkChain

    Geometry optimisation calculation with extended optional calculation options.

    InputRequiredValid typesDescription
    chemsh true Data
    basis_quality false Str, NoneType Set basis set quality for QM calculation based on defined options.
    metadata false
    vibrational_analysis false Bool, NoneType Calculate vibrational modes of resulting structure. (default=True)
    OutputRequiredValid typesDescription
    final_energy true Float The final energy for the optimised structure.
    optimised_structure true SinglefileData The final optimised geometry of the given structure.
    vibrational_energies false Dict The calculated thermochemical properties of the optimised structure
    vibrational_modes false ArrayData The calculated vibrational modes for the optimised structure.
    Exit statusMessage
    1 The process has failed with an unspecified error.
    2 The process failed with legacy failure mode.
    10 The process returned an invalid output.
    11 The process did not register a required output.