https://travis-ci.org/SCM-NV/qmflows-namd.svg?branch=0.1.7 https://api.codacy.com/project/badge/Grade/2bb0085352354caa9dd2ca655c2a8db3 https://readthedocs.org/projects/qmflows-namd/badge/?version=latest https://zenodo.org/badge/60843787.svg https://github.com/SCM-NV/qmflows-namd/workflows/build%20with%20conda/badge.svg https://api.codacy.com/project/badge/Coverage/2bb0085352354caa9dd2ca655c2a8db3

QMFlows-NAMD

QMFlows-NAMD is a generic python library with the purpose of computing (numerically) non-adiabatic coupling vectors (NACV) using several quantum chemical (QM) packages.

One of the main problems to calculate (numerically) NACVs by standard QM software is the computation of the overlap matrices between two electronically excited states at two consecutive time-steps that are needed in the numerical differentiation to evaluate the coupling. This happens because most of these softwares are inherently static, i.e. properties are computed for a given structural configuration, and the computation of the overlap matrices at different times requires complicated scripting tools to handle input/outputs of several QM packages.

For further information on the theory behind QMFlows-NAMD and how to use the program see the documentation.

Installation

In order to install the QMFlows-NAMD library you need to install first the QMFlows package and its environment using Miniconda as detailed here.

Then, to install the QMFlows-NAMD library type the following commands inside the conda environment:
  • conda install -c conda-forge rdkit cython eigen h5py libint==2.4.2 highfive pybind11
  • pip install git+https://github.com/SCM-NV/qmflows-namd#egg=qmflows-namd --upgrade

Advantages and Limitations

QMFlows-NAMD is based on the approximation that all excited states are represented by singly excited-state determinants. This means that the computation of the NACVs boils down to the computation of molecular orbitals (MOs) coefficients at given points of time using an electronic structure code and an overlap matrix S(t,t+dt) in atomic orbital basis (AO) computed between two consecutive time step. QMFlows-NAMD main advantage is to use an internal module to compute efficiently the atomic overlap matrix S(t, t+dt) by employing the same basis-set used in the electronic structure calculation. In this way the QM codes are only needed to retrieve the MOs coefficients at time t and t+dt. This approach is very useful because the interfacing QMFlows-NAMD to a QM code is reduced to writing a simple module that reads the MOs coefficients in the specific code format. At this moment, QMFlows-NAMD handles output formats generated by CP2K, Orca, and Gamess, but, as said, it can be easily extended to other codes.

Finally, QMFlows-NAMD can be also used in benchmarks studies to test new code developments in the field of excited state dynamics by providing a platform that uses all the functionalities of QMFlows, which automatizes the input preparation and execution of thousands of QM calculations.

In the near future, QMFlows-NAMD is expected to offer new functionalities.

Interface to Pyxaid

QMFlows-NAMD has been designed mostly to be integrated with Pyxaid, a python program that performs non-adiabatic molecular dynamic (NAMD) simulations using the classical path approximation (CPA). The CPA is based on the assumption that nuclear dynamics of the system remains unaffected by the dynamics of the electronic degrees of freedom. Hence, the electronic dynamics remains driven by the ground state nuclear dynamics. CPA is usually valid for extended materials or cluster materials of nanometric size.

In this framework, QMFlows-NAMD requires as input the coordinates of a pre-computed trajectory (at a lower level or at the same level of theory) in xyz format and the input parameters of the SCF code (HF and DFT). QMFlows-NAMD will then calculate the overlap matrix between different MOs by correcting their phase and will also track the nature of each state at the crossing seam using a min-cost algorithm . The NACVs are computed using the Hammes-Schiffer-Tully (HST) 2-point approximation and the recent Meek-Levine approach. The NACVs are then written in Pyxaid format for subsequent NAMD simulations.

Overview

The Library contains a C++ interface to the libint2 library to compute the integrals and several numerical functions in Numpy. While the scripts are set of workflows to compute different properties using different approximations that can be tuned by the user.

Worflow to calculate Hamiltonians for nonadiabatic molecular simulations

The figure represents schematically a Worflow to compute the Hamiltonians that described the behavior and coupling between the excited state of a molecular system. These Hamiltonians are used by thy PYXAID simulation package to carry out nonadiabatic molecular dynamics.

docs/_images/nac_worflow.png