Files
rdkit/Code/ForceField/UFF/Utils.cpp
nmaeder a45d4d9857 New contribs for DG (#7711)
* add angles and distances

* add Inversions

* add torsiona angle contribs

* use new contribs in test

* use new inversion and torsion contribs in dg

* use new distance contribs in dg

* use new angle constraints in dg

* use new constraints in FF tests

* update docstrings

* remove unused import

* include new contribs

* cleanup includes

* make changes requested by @greglandrum

* use std::move instead of release
2024-08-21 06:06:58 +02:00

84 lines
2.1 KiB
C++

//
// Copyright (C) 2013-2024 Paolo Tosco and other RDKit contributors
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#include "Utils.h"
#include <cmath>
namespace ForceFields {
namespace UFF {
namespace Utils {
double calculateCosY(const RDGeom::Point3D &iPoint,
const RDGeom::Point3D &jPoint,
const RDGeom::Point3D &kPoint,
const RDGeom::Point3D &lPoint) {
RDGeom::Point3D rJI = iPoint - jPoint;
RDGeom::Point3D rJK = kPoint - jPoint;
RDGeom::Point3D rJL = lPoint - jPoint;
rJI.normalize();
rJK.normalize();
rJL.normalize();
RDGeom::Point3D n = rJI.crossProduct(rJK);
n.normalize();
return n.dotProduct(rJL);
}
std::tuple<double, double, double, double>
calcInversionCoefficientsAndForceConstant(int at2AtomicNum, bool isCBoundToO) {
double res = 0.0;
double C0 = 0.0;
double C1 = 0.0;
double C2 = 0.0;
// if the central atom is sp2 carbon, nitrogen or oxygen
if ((at2AtomicNum == 6) || (at2AtomicNum == 7) || (at2AtomicNum == 8)) {
C0 = 1.0;
C1 = -1.0;
C2 = 0.0;
res = (isCBoundToO ? 50.0 : 6.0);
} else {
// group 5 elements are not clearly explained in the UFF paper
// the following code was inspired by MCCCS Towhee's ffuff.F
double w0 = M_PI / 180.0;
switch (at2AtomicNum) {
// if the central atom is phosphorous
case 15:
w0 *= 84.4339;
break;
// if the central atom is arsenic
case 33:
w0 *= 86.9735;
break;
// if the central atom is antimonium
case 51:
w0 *= 87.7047;
break;
// if the central atom is bismuth
case 83:
w0 *= 90.0;
break;
}
C2 = 1.0;
C1 = -4.0 * cos(w0);
C0 = -(C1 * cos(w0) + C2 * cos(2.0 * w0));
res = 22.0 / (C0 + C1 + C2);
}
res /= 3.0;
return std::make_tuple(res, C0, C1, C2);
}
} // end of namespace Utils
} // namespace UFF
} // namespace ForceFields