mirror of
https://github.com/QuantumPackage/qp2.git
synced 2024-12-27 13:53:29 +01:00
29 lines
703 B
Org Mode
29 lines
703 B
Org Mode
|
! A small program to break the spatial symmetry of the MOs.
|
||
|
|
||
|
! You have to defined your MO classes or set security_mo_class to false
|
||
|
! with:
|
||
|
! qp set orbital_optimization security_mo_class false
|
||
|
|
||
|
! The default angle for the rotations is too big for this kind of
|
||
|
! application, a value between 1e-3 and 1e-6 should break the spatial
|
||
|
! symmetry with just a small change in the energy.
|
||
|
|
||
|
#+BEGIN_SRC f90 :comments org :tangle break_spatial_sym.irp.f
|
||
|
program break_spatial_sym
|
||
|
|
||
|
!BEGIN_DOC
|
||
|
! Break the symmetry of the MOs with a rotation
|
||
|
!END_DOC
|
||
|
|
||
|
implicit none
|
||
|
|
||
|
kick_in_mos = .True.
|
||
|
TOUCH kick_in_mos
|
||
|
|
||
|
call set_classes_loc
|
||
|
call apply_pre_rotation
|
||
|
call unset_classes_loc
|
||
|
|
||
|
end
|
||
|
#+END_SRC
|