-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Evauation of angular momentum in GBasis vs. Libcint bindings #149
Comments
Single P orbital, cartesian
|
Judging from wikipedia, that formula from the image (with the minus sign) match. You can use grid it to evaluate this integral. The first grid I would recommend is a atomic grid centered at the p-orbital center. from grid.molgrid import AtomGrid
atcoords = # p-orbital center
atgrid = AtomGrid.from_preset(atnum=3, preset="fine", center=atcoords) Then you can interpolate the p-orbital then approximate its derivative p_orbital_vals = # Evaluated on atgrid.points
func_interpolate_dens = atgrid.interpolate(p_orbital_vals)
deriv_density = func_interpolate_dens(atgrid.points, deriv=1) # Get the first derivative wrt to Cartesian Then you can evaluate those integral by running x, y, z = atgrid.points.T
atgrid.integrate(p_orbital_vals * y * deriv_density[:, 1]) # etc The other option is to analytically calculate the derivatives. If the accuracy isn't good, you can play around increasing the preset parameter or adding your own radial grid. |
@leila-pujal and I have tested the angular momentum integrals using Grid. It seems Gbasis is correct. Now, since I can't find a proper LibCint function to call, in order to get the right answer, should we just ask someone or raise an Issue in the Libcint repo? |
Let's make sure it isn't a different ordering. I can give some tests for I know that libcint does a strange ordering, so that can be a factor. One other idea, however: did you confirm that gbasis and libcint are also different for Cartesians, or is this specific to Spherical? |
I will drop both spherical/cartesian here. CARTESIAN
SPHERICAL
The answers are consistent for spherical/cartesian. Libcint is wrong here. At least this integral isn't angular momentum, and I can't find one that is correct. I made sure the P orbital ordering is Py Pz Px for Libcint, which is the same as Gbasis (S1 C0 C1). |
Are you sure that this is the ordering in |
I compiled it the with flag to set PyPzPx. |
In this case, I think we should just pass on using |
There's a difference in some positive and negative signs in the outputs.
Originally posted by @msricher in #137 (comment)
Attached image is what the Gbasis notes say angular momentum is, which matches up with the code as far as I can tell.
Libcint doesn't give as much documentation, but it says it's
r cross Nabla
; does this exclusively imply the formula in the image attached, or could there be a difference of convention? I feel like a difference of convention could explain why there's a factor of -1 difference in some elements, but not others.Is there anyway I can evaluate this array numerically using Grid, to verify whether GBasis or Libcint is correct?
The text was updated successfully, but these errors were encountered: