Wrong symmetries when conventional cell #76
-
Dear SSCHA developers, I am running into a problem related to symmetries: when calling dyn.Symmetrize(), I get the message: ZrO2 Thank you! Best, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Dear Carla, You can also set this as an option in the sscha minimization (that symmetrization is always done with spglib) setting the use_spglib = True of the SSCHA_Minimizer object (if you are using the python script), otherwise adding the option use_spglib = .true. in the namelist input file. |
Beta Was this translation helpful? Give feedback.
Dear Carla,
Sorry for the delay in my reply.
This usually happens when you have a supercell and the quantum espresso code for symmetries on which CellConstructor is based is not able to recognize the Group. You can employ the SPGLIB function for the symmetry by replacing Symmetrize() with Symmetrize(use_spglib = True).
Indeed, you need to have spglib installed (pip install spglib should do the trick).
You can also set this as an option in the sscha minimization (that symmetrization is always done with spglib) setting the use_spglib = True of the SSCHA_Minimizer object (if you are using the python script), otherwise adding the option use_spglib = .true. in the namelist input file.