public class AtomHybridizationVSEPRDescriptor extends AbstractAtomicDescriptor implements IAtomicDescriptor
This class try to find a SIMPLE WAY the molecular geometry for following from Valence Shell Electron Pair Repulsion or VSEPR model and at the same time its hybridization of atoms in a molecule.
The basic premise of the model is that the electrons are paired in a molecule and that the molecule geometry is determined only by the repulsion between the pairs. The geometry adopted by a molecule is then the one in which the repulsions are minimized.
It counts the number of electron pairs in the Lewis dot diagram which
are attached to an atom. Then uses the following table.
| pairs on an atom | hybridization of the atom | geometry | number for CDK.Constants |
| 2 | sp | linear | 1 |
| 3 | sp^2 | trigonal planar | 2 |
| 4 | sp^3 | tetrahedral | 3 |
| 5 | sp^3d | trigonal bipyramid | 4 |
| 6 | sp^3d^2 | octahedral | 5 |
| 7 | sp^3d^3 | pentagonal bipyramid | 6 |
| 8 | sp^3d^4 | square antiprim | 7 |
| 9 | sp^3d^5 | tricapped trigonal prism | 8 |
This table only works if the central atom is a p-block element (groups IIA through VIIIA), not a transition metal.
| Name | Default | Description |
| no parameters |
| Constructor and Description |
|---|
AtomHybridizationVSEPRDescriptor()
Constructor for the AtomHybridizationVSEPRDescriptor object
|
| Modifier and Type | Method and Description |
|---|---|
DescriptorValue |
calculate(IAtom atom,
IAtomContainer container)
This method calculates the hybridization of an atom.
|
String[] |
getDescriptorNames()
Returns an array of names for each descriptor value calculated.
|
String[] |
getParameterNames()
Gets the parameterNames attribute of the AtomHybridizationVSEPRDescriptor object
|
Object[] |
getParameters()
Gets the parameters attribute of the AtomHybridizationVSEPRDescriptor object
|
Object |
getParameterType(String name)
Gets the parameterType attribute of the AtomHybridizationVSEPRDescriptor object
|
DescriptorSpecification |
getSpecification()
Gets the specification attribute of the AtomHybridizationVSEPRDescriptor object
|
void |
initialise(IChemObjectBuilder builder)
Default implementation of initialise allows optional override.
|
void |
setParameters(Object[] params)
This descriptor does have any parameter.
|
cacheDescriptorValue, getCachedDescriptorValue, isCachedAtomContainerclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitinitialisepublic AtomHybridizationVSEPRDescriptor()
public DescriptorSpecification getSpecification()
getSpecification in interface IDescriptorpublic void setParameters(Object[] params) throws CDKException
setParameters in interface IDescriptorparams - An array of Object containing the parameters for this descriptorCDKException - if invalid number of type of parameters are passed to itIDescriptor.getParameters()public Object[] getParameters()
getParameters in interface IDescriptorsetParameters(java.lang.Object[])public String[] getDescriptorNames()
IDescriptorALOGPDescriptor
the return array will have a single elementgetDescriptorNames in interface IDescriptorpublic DescriptorValue calculate(IAtom atom, IAtomContainer container)
calculate in interface IAtomicDescriptoratom - The IAtom for which the DescriptorValue is requestedcontainer - Parameter is the atom container.public String[] getParameterNames()
getParameterNames in interface IDescriptorpublic Object getParameterType(String name)
getParameterType in interface IDescriptorname - Description of the Parameterpublic void initialise(IChemObjectBuilder builder)
initialise in interface IDescriptorbuilder - chem object buildCopyright © 2017. All Rights Reserved.