Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign upTd Molecule Breaks Symmetry-Alignment with Ref. Axes During Optimization #1474
Comments
This comment has been minimized.
This comment has been minimized.
This sounds similar to the issue I ran into with the first version of the SAD guess rewrite: CH4 switched symmetry and the program crashed due to memory errors. |
This comment has been minimized.
This comment has been minimized.
Can you print the gradient at the first step, it should not be possible to break that symmetry as we symmetrize the gradient to cleanup small noise. Looking at the molecule you have a completely different orientation than the starting one, where a YZ plan switch and shift appears to have happened. If you track the point group does it change per iteration? |
This comment has been minimized.
This comment has been minimized.
Gradient and geometry are as follows:
The YZ plane shift surprised me at first, but then I remembered orientation is discontinuous in Psi. The shift still surprises me. I should have been clearer: it is the very first step that reduces the computational point group. So yes, the point group does change per geometry iteration. |
This comment has been minimized.
This comment has been minimized.
I decided after the previous post to repeat the gradient check for
In the bugged example, the -z component of the gradients disagree in the last printed decimal place, which they don't in the non-bugged example. So am I correct in assuming something has gone wrong with the gradient? |
This comment has been minimized.
This comment has been minimized.
Hmm, dollars to donuts we are only symmetrizing to the closest Abelian symmetry, not the full point group symmetry. I assume Psi find the molecule as Td, but guessing only Cs molecular symmetry? In |
This comment has been minimized.
This comment has been minimized.
Been a while, but I think we don't have character table for non-Abelian point groups. https://github.com/psi4/psi4/blob/master/psi4/src/psi4/libmints/maketab.cc Symmetry detection happens in molecule.cc, so we do have non-Abelian there, but only for reporting. |
This comment has been minimized.
This comment has been minimized.
Should be closed by #1483 correct? |
This comment has been minimized.
This comment has been minimized.
Should, but worth another check. |
This comment has been minimized.
This comment has been minimized.
It's fixed now, but how? #1483 was just a DFMP2 fix. PBE isn't an MP2 hybrid, and it certainly isn't MP2. |
JonathonMisiewicz commentedJan 13, 2019
Transferred from the forums and possibly related to #1177.
In the following optimization, Psi quits after reporting a tetrahedral molecule falls from
C2v
toCs
molecular point group while maintainingTd
full point group after the first step.The first step appears to break the alignment of the molecular symmetry axes with the reference axes. For comparison, here are the starting coordinates (Bohr) and the coordinates after step 1:
The original reporter said this problem was observed with this basis set but not others. To me, this suggests numerical noise determines whether the bug occurs.