Skip to content

Inconsistence in the source code and documentation of coupling.f90 #7

Description

@yhli1016

Dear Dr. Zheng,

The formula for non-adiabatic coupling terms is

d_{ij} = (<psi_i(t)|psi_j(t+dt)> - <psi_i(t+dt)|psi_j(t)>) / (2dt)

according to Prezhdo's paper (doi: 10.1021/ct400641n) and pp. 19 of your PhD dissertation. However, in the documentation of CoupIJ of coupling.f90, it is

! <psi_i(t)|psi_j(t+dt)>
pij = SUM(CONJG(crA(:,i)) * crB(:,j))

! <psi_j(t)|psi_i(t+dt)>
pji = SUM(CONJG(crB(:,i)) * crA(:,j))

Since crA and crB are wave functions at t and t+dt respectively, the documentation has missed a conjugate term * at the end of the braket. It should be <psi_j(t)|psi_i(t+dt)>* or <psi_i(t+dt)|psi_j(t)>. The source code, on the contrary , is right.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions