Skip to content
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

issymmorph for individual SymOperations can be wrong #46

Open
thchr opened this issue Sep 28, 2022 · 1 comment
Open

issymmorph for individual SymOperations can be wrong #46

thchr opened this issue Sep 28, 2022 · 1 comment

Comments

@thchr
Copy link
Owner

thchr commented Sep 28, 2022

The trouble is that we currently assume that if op $= (W|w)$ has nonzero part $w$ and is in a primitive setting, then it is necessarily a nonsymmorphic operation: but that is not true in general. Rather, $w$ could simply indicate where the rotation axis/mirror plane is.

As an example, in SG 120, we have:

julia> sg = spacegroup(120)
julia> psg = primitivize(sg)
julia> op = psg[7]
{2₁₁₂|½,½,0} ─────── (-x+z+1/2,-y+z+1/2,z)
 ┌ -1  0  11/2 ┐
 │  0 -1  11/2 │
 └  0  0  10

Now, for a proper nonsymmorphic operation, if we apply it n times (with n denoting rotation order), it must become a pure, nonzero translation - but here, instead, we have:

julia> compose(op, op, false)
1 ──────────────────────────────── (x,y,z)
 ┌ 1  0  00 ┐
 │ 0  1  00 │
 └ 0  0  10

What we probably need to do is compute the intrinsic translation part of w, what ITA calls $w_g = w - w_l$. See e.g., Section 11.2.

@hongyi-zhao
Copy link

See here and here for related discussions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants