-
Notifications
You must be signed in to change notification settings - Fork 1
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
Splitting ModelSystem
and Cell
#159
Comments
@EBB2675 do you anticipated any case where a subsystem may refer to an electronic section? |
One solution might be to follow CMSO, and define I don't know if you discussed this internally, but it seems to me this would be the option 3 of your list in the first message. But for @Bernadette-Mohr @JFRudzinski , does this CMSO makes sense? |
Is this relevant to the issue here, or is it a parallel suggestion? Adopting CMSO in itself does not address the ambiguity of the cell class definition does it? Or am I missing something? In any case, there are of course some specific aspects of CMSO that do not apply to soft matter in general, but I see no issue in the overarching structure. Not sure if you had some specific aspect in mind? |
I saw that the problem is that So if what bothers is that cell appears, I think abstraction might be the solution, similar to CMSO: having a metaclass |
This issue was prompted by the Area C meeting on 13.12.2024
System Hierarchies and Particle Definitions
The current structure of
ModelSystem
leaves some unclarities open wrt structuring. AnyModelSystem
instance contains subsectionsmodel_system
andcell
.model_system
is to cover subsystems in the system hierarchy. What may constitute a subsystem is completely context-dependent. Atoms, monomers, material phases, device components, coarse-grained systems, ONIOM shells are equally valid, and may even be used intermittently, e.g. first by material phase, then by monomer:system -> slab + [polymer -> monomer]
(where->
stands for "subsystem of").cell
specifies the positions, velocities, etc. of whatever kind of particle it refers to. It may also employ other sections, likeAtomState
, for more contextual definitions.Structuring Options
This schema is now ambiguous regarding where to place the particle definitions (i.e. populate
cell
):Under the current schema, all options are equally valid. I think we can all agree that we'd like to set a clearer guideline of which approach to use. We seem to prefer the "top level" approach overall.
This assumes, of course, that we won't run into any cases where we need the more generic "bottom level" and its alternatives. I think that we can safely split such cases over multiple entries, as they typically involve very different kinds of calculations. Feel free to provide counterexamples.
Suggested Solution
If we end up going with "top-level", we either:
cell
fromModelSystem
.model_system
be of a simpler type thanModelSystem
.Regardless of the implementation, we should still retain some common (intrinsic) properties for any subsystem, e.g. total charge, total mass. We should also support references to
ModelMethod
, to cover cases like ONIOM.Sketch of the problem statement and suggested solutions.
The text was updated successfully, but these errors were encountered: