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
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. Any ModelSystem instance contains subsections model_system and cell.
The intended use of 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, like AtomState, for more contextual definitions.
Structuring Options
This schema is now ambiguous regarding where to place the particle definitions (i.e. populate cell):
top level: all particles are defined at the top-level system. Subsystems only refer back to the particles via their indices.
bottom level: each leaf node in the system hierarchy defines its own particles. Supersystem nodes (i.e. nodes that aren't leafs) simply stay blank.
maximally referential: similar to "bottom level", but each supersystem node repeats the particle definitions of its own subsystems.
minimalistic referential: similar to "bottom level", but each supersystem node refers to the origins of its own subsystems.
free-style: no clear structure, fully up to the whims of the parser dev.
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:
decouple cell from ModelSystem.
have model_system be of a simpler type than ModelSystem.
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:
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: