-
Notifications
You must be signed in to change notification settings - Fork 100
Closed
Description
Major design decision:
Currently, the charge method is handled on a "by system" basis; that is, as an argument to createSystem. So, all the components of a System are charged via the same mechanism, such as AM1-BCC, and we have no mechanism to flag specific components of a system for special treatment. Often, this is what we want, but water poses challenges (see #24 ) -- typically, for existing water models, we want to assign library charges and only charge our solute (or non-water solvent) atoms via normal charging schemes like AM1-BCC.
How shall we achieve this? @jchodera , @bannanc , @andrizzi, thoughts? Some ideas:
- Create a new "special section" in the SMIRNOFF format (kind of analogous to the
BondChargeCorrectionssection) which allows SMIRKS patterns to specify use of library charges for specific groups - Allow
chargeMethodto be a list rather than a string, where a different charge method can be used for different components of the system
Other possibilities?