-
Notifications
You must be signed in to change notification settings - Fork 16
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
Symmetry number estimations not always accurate #49
Comments
Nate,
I suggest you discuss with Mark Goldman.
Bill
Sent from my phone.
On Nov 19, 2019, at 2:48 PM, Nate Harms <[email protected]> wrote:
Symmetry numbers calculated using RMG's symmetry package tend to result in incorrect estimations of symmetry numbers. Below is an example of ethane which should have a symmetry number of 6<https://webbook.nist.gov/cgi/cbook.cgi?ID=C74840&Mask=800>. This issue arose when creating PR #48<#48>. Some investigation into alternate packages may remedy this.
In [1]: from autotst.species import Conformer
In [2]: conf = Conformer("CC")
In [3]: conf.calculate_symmetry_number()
symmetry.py:253 write_input_file INFO Symmetry input file written to ./CC.symm
symmetry.py:219 parse INFO Point group: C1
Out[3]: 1
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub<#49?email_source=notifications&email_token=AAJL7MCWK5PEUZFUXXGQHQLQUQ7IFA5CNFSM4JPIO4UKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4H2OKNAA>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AAJL7MBCVXNL3JYTUMNETZ3QUQ7IFANCNFSM4JPIO4UA>.
|
Thanks for the recommendation, I just reached out to him. |
RMG's symmetry algorithm includes both internal (from sigma bond rotation) and external symmetry (from rotation the whole molecule). Since the C-C bond in ethane can rotate a methyl group, it has an internal rotational symmetry of 3. Combined with the external symmetry you cite, the symmetry number RMG's symmetry algorithm should return is 18. Running the current RMG package leads to:
This seems to work in RMG. I am not sure why it isn't working in AutoTST. |
Thanks, I'll switch it to this. We are currently doing this at the moment as a method of
This aspect comes from what was done in the first version of AutoTST, but it's looking like it's time for a change. |
Symmetry numbers calculated using RMG's
symmetry
package tend to result in incorrect estimations of symmetry numbers. Below is an example of ethane which should have a symmetry number of 6. This issue arose when creating PR #48. Some investigation into alternate packages may remedy this.The text was updated successfully, but these errors were encountered: