EEM Charges
EEM
Class to handle calculation of electronegativity equilibration method charges
calculate_charges(mol)
staticmethod
Calculate the partial atomic charges based on the EEM method.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
mol |
Molecule |
The molecule with atoms where partial charges are desired |
required |
Returns:
Type | Description |
---|---|
np.ndarray |
the partial charges associated the atoms in |
Source code in chmpy/ext/charges.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
|