You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to suggest to include the concept of group inside pyiron, by allowing the user to have a tag like group in structure.arrays (which is an ASE attribute), which can look like:
structure.arrays["group_A"] = [0, 0, 1, 1, 1, 1, 0, 0] # maybe has to be numpy arraystructure.arrays["group_B"] = [1, 0, 0, 1, 1, 2, 0, 0] # maybe has to be numpy array
where the numbers 0 and 1 refer to the group ids. This should be translated inside the Lammps script into
group A_0 id 1 2 7 8
group A_1 id 3 4 5 6
group B_0 id 2 3 7 8
group B_1 id 1 4 5
group B_2 id 6
The text was updated successfully, but these errors were encountered:
I would like to suggest to include the concept of
group
inside pyiron, by allowing the user to have a tag likegroup
instructure.arrays
(which is an ASE attribute), which can look like:where the numbers 0 and 1 refer to the group ids. This should be translated inside the Lammps script into
The text was updated successfully, but these errors were encountered: