RDKit
Open-source cheminformatics and machine learning.
Loading...
Searching...
No Matches
Inversions.h
Go to the documentation of this file.
1//
2// Copyright (C) 2024 Niels Maeder and other RDKit contributors
3//
4// @@ All Rights Reserved @@
5// This file is part of the RDKit.
6// The contents are covered by the terms of the BSD license
7// which is included in the file license.txt, found at the root
8// of the RDKit source tree.
9//
10#include <RDGeneral/export.h>
11#ifndef RD_UFFINVERSIONS_H
12#define RD_UFFINVERSIONS_H
13#include <ForceField/Contrib.h>
14#include <vector>
15
16namespace ForceFields {
17namespace UFF {
18class AtomicParams;
19
21 unsigned int idx1{0}; //!< index of atom1 in the ForceField's positions
22 unsigned int idx2{0}; //!< index of atom2 in the ForceField's positions
23 unsigned int idx3{0}; //!< index of atom3 in the ForceField's positions
24 unsigned int idx4{0}; //!< index of atom4 in the ForceField's positions
25 int at2AtomicNum{0}; //!< atomic number for atom 2
26 bool isCBoundToO{false}; //!< boolean flag; true if atom 2 is sp2 carbon
27 //!< bound to sp2 oxygen
28 double C0{0.0}; //!< inversion coefficient 0
29 double C1{0.0}; //!< inversion coefficient 1
30 double C2{0.0}; //!< inversion coefficient 2
31 double forceConstant{1.0}; //!< force constant
32 InversionContribsParams(unsigned int idx1, unsigned int idx2,
33 unsigned int idx3, unsigned int idx4,
34 int at2AtomicNum, bool isCBoundToO, double C0,
35 double C1, double C2, double forceConstant = 1.0)
36 : idx1(idx1),
37 idx2(idx2),
38 idx3(idx3),
39 idx4(idx4),
40 at2AtomicNum(at2AtomicNum),
41 isCBoundToO(isCBoundToO),
42 C0(C0),
43 C1(C1),
44 C2(C2),
45 forceConstant(forceConstant) {};
46};
47//! A term to capture all Inversion Contributionss.
49 public:
50 InversionContribs() = default;
51 //! Constructor
52 /*!
53 \param owner pointer to the owning ForceField
54 */
56
57 ~InversionContribs() override = default;
58 //! Add contribution to this contrib.
59 /*!
60 \param idx1 index of atom1 in the ForceField's positions
61 \param idx2 index of atom2 in the ForceField's positions
62 \param idx3 index of atom3 in the ForceField's positions
63 \param idx4 index of atom4 in the ForceField's positions
64 \param at2AtomicNum atomic number for atom 2
65 \param isCBoundToO boolean flag; true if atom 2 is sp2 C bound to
66 sp2 O
67 \param oobForceScalingFactor scaling factor for force constant
68
69 */
70 void addContrib(unsigned int idx1, unsigned int idx2, unsigned int idx3,
71 unsigned int idx4, int at2AtomicNum, bool isCBoundToO,
72 double oobForceScalingFactor = 1.0);
73 //! return the contribution of this contrib to the energy of a given state
74 /*!
75 \param pos positions of the atoms in the current state
76 */
77 double getEnergy(double *pos) const override;
78 //! calculate the contribution of this contrib to the gradient at a given
79 /// state
80 /*!
81 \param pos positions of the atoms in the current state
82 \param grad gradients to be adapted
83 */
84 void getGrad(double *pos, double *grad) const override;
85
86 //! Copy constructor
87 InversionContribs *copy() const override {
88 return new InversionContribs(*this);
89 }
90
91 //! Return true if there are no contributions in this contrib
92 bool empty() const { return d_contribs.empty(); }
93
94 //! Get number of contributions in this contrib
95 unsigned int size() const { return d_contribs.size(); }
96
97 private:
98 std::vector<InversionContribsParams> d_contribs;
99};
100
101} // namespace UFF
102} // namespace ForceFields
103
104#endif
abstract base class for contributions to ForceFields
Definition Contrib.h:18
A class to store forcefields and handle minimization.
Definition ForceField.h:79
A term to capture all Inversion Contributionss.
Definition Inversions.h:48
void getGrad(double *pos, double *grad) const override
InversionContribs * copy() const override
Copy constructor.
Definition Inversions.h:87
~InversionContribs() override=default
bool empty() const
Return true if there are no contributions in this contrib.
Definition Inversions.h:92
InversionContribs(ForceField *owner)
Constructor.
void addContrib(unsigned int idx1, unsigned int idx2, unsigned int idx3, unsigned int idx4, int at2AtomicNum, bool isCBoundToO, double oobForceScalingFactor=1.0)
Add contribution to this contrib.
double getEnergy(double *pos) const override
return the contribution of this contrib to the energy of a given state
unsigned int size() const
Get number of contributions in this contrib.
Definition Inversions.h:95
#define RDKIT_FORCEFIELD_EXPORT
Definition export.h:185
InversionContribsParams(unsigned int idx1, unsigned int idx2, unsigned int idx3, unsigned int idx4, int at2AtomicNum, bool isCBoundToO, double C0, double C1, double C2, double forceConstant=1.0)
Definition Inversions.h:32