| Trees | Indices | Help |
|
|---|
|
|
|
|||
|
PropertyFunctor Creates a python based property function that can be added to the global property list. |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_descList = []
|
|||
MolWt = lambda* x,** y:
|
|||
HeavyAtomMolWt = lambda x:
|
|||
ExactMolWt = lambda* x,** y:
|
|||
FpDensityMorgan1 = lambda x:
|
|||
FpDensityMorgan2 = lambda x:
|
|||
FpDensityMorgan3 = lambda x:
|
|||
Imports: collections, Chem, _rdMolDescriptors, rdPartialCharges, rdMolDescriptors, _du, MaxEStateIndex, MinEStateIndex, MaxAbsEStateIndex, MinAbsEStateIndex, qed
|
|||
The number of valence electrons the molecule has
>>> NumValenceElectrons(Chem.MolFromSmiles('CC'))
14
>>> NumValenceElectrons(Chem.MolFromSmiles('C(=O)O'))
18
>>> NumValenceElectrons(Chem.MolFromSmiles('C(=O)[O-]'))
18
>>> NumValenceElectrons(Chem.MolFromSmiles('C(=O)'))
12
|
The number of radical electrons the molecule has
(says nothing about spin state)
>>> NumRadicalElectrons(Chem.MolFromSmiles('CC'))
0
>>> NumRadicalElectrons(Chem.MolFromSmiles('C[CH3]'))
0
>>> NumRadicalElectrons(Chem.MolFromSmiles('C[CH2]'))
1
>>> NumRadicalElectrons(Chem.MolFromSmiles('C[CH]'))
2
>>> NumRadicalElectrons(Chem.MolFromSmiles('C[C]'))
3
|
| Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Mon Mar 26 11:18:47 2018 | http://epydoc.sourceforge.net |