Source code for vermouth.processors.attach_mass

# Copyright 2018 University of Groningen
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Provides a processor that assigns a `mass` attribute to every node in a
molecule based on it's element.
"""


from .processor import Processor

# TODO: make the masses part of the forcefield
ATOM_MASSES = {'H': 1, 'C': 12, 'N': 14, 'O': 16, 'S': 32, 'P': 31, 'M': 0}


[docs]def attach_mass(molecule, attribute='mass'): """ For every atom in `molecule` look up it's element in ``ATOM_MASSES``, and assign that value to `attribute`. Parameters ---------- molecule: networkx.Graph The molecule to process. Is modified in-place. attribute: collections.abc.Hashable The attribute the mass is assigned to. """ for node in molecule.nodes.values(): node[attribute] = ATOM_MASSES[node['element']]
[docs]class AttachMass(Processor): def __init__(self, attribute='mass'): super().__init__() self.attribute = attribute
[docs] def run_molecule(self, molecule): attach_mass(molecule, attribute=self.attribute) return molecule