org.openmolecules.chem.conf.so.SelfOrganizedConformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openchemlib Show documentation
Show all versions of openchemlib Show documentation
Open Source Chemistry Library
/*
* Copyright 2013-2020 Thomas Sander, openmolecules.org
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* 3. Neither the name of the copyright holder nor the names of its contributors
* may be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
* SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* @author Thomas Sander
*/
package org.openmolecules.chem.conf.so;
import com.actelion.research.chem.StereoMolecule;
import com.actelion.research.chem.conf.Conformer;
import com.actelion.research.chem.conf.TorsionDescriptor;
import com.actelion.research.chem.conf.TorsionDescriptorHelper;
import java.util.ArrayList;
public class SelfOrganizedConformer extends Conformer {
private static final double MAX_ATOM_STRAIN = 0.01;
// adjust such that a molecule strain of atom count times MAX_AVERARAGE_ATOM_STRAIN reduces frequency by factor 100
private static final double MAX_AVERARAGE_ATOM_STRAIN = 0.001;
private double mMaxAtomStrain,mTotalStrain;
private double[] mAtomStrain,mRuleStrain;
private boolean mIsUsed;
private TorsionDescriptor mTorsionDescriptor;
public SelfOrganizedConformer(StereoMolecule mol) {
super(mol);
}
/**
* Checks whether the total strain of this Conformer is larger than that of conformer,
* assuming that the calculated strain values are up-to-date.
* @param conformer
* @return
*/
public boolean isWorseThan(SelfOrganizedConformer conformer) {
return mTotalStrain > conformer.mTotalStrain;
}
public void calculateStrain(ArrayList ruleList) {
if (mAtomStrain != null)
return;
mAtomStrain = new double[getMolecule().getAllAtoms()];
mRuleStrain = new double[ConformationRule.RULE_NAME.length];
for (ConformationRule rule:ruleList)
if (rule.isEnabled())
mRuleStrain[rule.getRuleType()] += rule.addStrain(this, mAtomStrain);
mMaxAtomStrain = 0f;
mTotalStrain = 0f;
for (int atom=0; atom ruleList) {
if (ruleList != null)
calculateStrain(ruleList);
return (mMaxAtomStrain < MAX_ATOM_STRAIN
&& mTotalStrain < MAX_AVERARAGE_ATOM_STRAIN * getMolecule().getAllAtoms());
}
public void invalidateStrain() {
mAtomStrain = null;
mRuleStrain = null;
}
/**
* Calculates the torsion descriptor for the current coordinates.
* Use calculateRotatableBondsForDescriptor() once and pass it
* for every new conformer to this method.
* @param rotatableBond set of rotatable bonds to be considered
*/
public void calculateDescriptor(int[] rotatableBond) {
mTorsionDescriptor = new TorsionDescriptorHelper(getMolecule(), rotatableBond).getTorsionDescriptor(this);
}
/**
* Returns true, if none of the torsion angles between both conformers
* are more different than TorsionDescriptor.TORSION_EQUIVALENCE_TOLERANCE;
* Calling this method requires that calculateDescriptor() has been called earlier.
* @param conformer
* @return true if all torsions are similar
*/
public boolean equals(SelfOrganizedConformer conformer) {
return mTorsionDescriptor.equals(conformer.mTorsionDescriptor);
}
public boolean isUsed() {
return mIsUsed;
}
public void setUsed(boolean isUsed) {
mIsUsed = isUsed;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy