Support and discussions for Molcas and OpenMolcas users and developers
You are not logged in.
Please note: The forum's URL has changed. The new URL is: https://molcasforum.univie.ac.at. Please update your bookmarks!
You can choose an avatar and change the default style by going to "Profile" → "Personality" or "Display".Pages: 1
Hi,
I just have a question on internal reaction coordinate using.
(1) Currently I am running azobenzene and want to calculate different CNNC dihedral angle. Is it available for Openmolcas to make the scan on internal coordinates? (for example, scan CNNC dihedral angle 10 times, each step is 2 degree) (I searched manual and only find the fixed internal reaction coordinate but didn't find how to scan).
(2) Also, if it is okay for scan, is it okay to output the Cartesian coordinate of each scan? (even without any wavefunction calculation, since I only need the Cartesian coordinates in each grid on internal coordinates)
Offline
If you mean a "rigid" scan, i.e. change only the dihedral and keep all other internal coordinates frozen, that's not possible.
If you mean a "relaxed" scan, where you fix the dihedral to different values and optimize all the other coordinates to minimize the energy, you can do that with a constraint and a FOREACH loop, e.g.
> FOREACH D in (60,62,64,66)
&GATEWAY
...
Constraints
d = Dihedral C1 N2 N3 C4
Values
d = $D
End of Constraints
> DO WHILE
&SEWARD
&SCF
&SLAPAF
> END DO
> END FOREACH
In this case your (2) does not make sense, because in order to obtain the coordinates you have to do the wfn calculations first.
Offline
Pages: 1