1 |
/* |
2 |
* Copyright (c) 2005 The University of Notre Dame. All Rights Reserved. |
3 |
* |
4 |
* The University of Notre Dame grants you ("Licensee") a |
5 |
* non-exclusive, royalty free, license to use, modify and |
6 |
* redistribute this software in source and binary code form, provided |
7 |
* that the following conditions are met: |
8 |
* |
9 |
* 1. Redistributions of source code must retain the above copyright |
10 |
* notice, this list of conditions and the following disclaimer. |
11 |
* |
12 |
* 2. Redistributions in binary form must reproduce the above copyright |
13 |
* notice, this list of conditions and the following disclaimer in the |
14 |
* documentation and/or other materials provided with the |
15 |
* distribution. |
16 |
* |
17 |
* This software is provided "AS IS," without a warranty of any |
18 |
* kind. All express or implied conditions, representations and |
19 |
* warranties, including any implied warranty of merchantability, |
20 |
* fitness for a particular purpose or non-infringement, are hereby |
21 |
* excluded. The University of Notre Dame and its licensors shall not |
22 |
* be liable for any damages suffered by licensee as a result of |
23 |
* using, modifying or distributing the software or its |
24 |
* derivatives. In no event will the University of Notre Dame or its |
25 |
* licensors be liable for any lost revenue, profit or data, or for |
26 |
* direct, indirect, special, consequential, incidental or punitive |
27 |
* damages, however caused and regardless of the theory of liability, |
28 |
* arising out of the use of or inability to use software, even if the |
29 |
* University of Notre Dame has been advised of the possibility of |
30 |
* such damages. |
31 |
* |
32 |
* SUPPORT OPEN SCIENCE! If you use OpenMD or its source code in your |
33 |
* research, please cite the appropriate papers when you publish your |
34 |
* work. Good starting points are: |
35 |
* |
36 |
* [1] Meineke, et al., J. Comp. Chem. 26, 252-271 (2005). |
37 |
* [2] Fennell & Gezelter, J. Chem. Phys. 124, 234104 (2006). |
38 |
* [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 24107 (2008). |
39 |
* [4] Kuang & Gezelter, J. Chem. Phys. 133, 164101 (2010). |
40 |
* [5] Vardeman, Stocker & Gezelter, J. Chem. Theory Comput. 7, 834 (2011). |
41 |
*/ |
42 |
|
43 |
#ifndef NONBONDED_NONBONDEDINTERACTION_HPP |
44 |
#define NONBONDED_NONBONDEDINTERACTION_HPP |
45 |
|
46 |
#include "types/AtomType.hpp" |
47 |
#include "math/SquareMatrix3.hpp" |
48 |
|
49 |
using namespace std; |
50 |
namespace OpenMD { |
51 |
|
52 |
/** |
53 |
* The InteractionFamily enum. |
54 |
* |
55 |
* This is used to sort different types of non-bonded interaction |
56 |
* and to prevent multiple interactions in the same family from |
57 |
* being applied to any given pair of atom types. |
58 |
*/ |
59 |
enum InteractionFamily { |
60 |
NO_FAMILY = 0, /**< No family defined */ |
61 |
VANDERWAALS_FAMILY = 1, /**< Long-range dispersion and short-range pauli repulsion */ |
62 |
ELECTROSTATIC_FAMILY = 2, /**< Coulombic and point-multipole interactions */ |
63 |
METALLIC_FAMILY = 3, /**< Transition metal interactions involving electron density */ |
64 |
HYDROGENBONDING_FAMILY = 4,/**< Short-range directional interactions */ |
65 |
N_INTERACTION_FAMILIES = 5 |
66 |
}; |
67 |
|
68 |
typedef Vector<RealType, N_INTERACTION_FAMILIES> potVec; |
69 |
|
70 |
/** |
71 |
* The InteractionData struct. |
72 |
* |
73 |
* This is used to pass pointers to data to specific non-bonded |
74 |
* interactions for force calculations. Not all of the struct |
75 |
* members are utilized by any given interaction. |
76 |
*/ |
77 |
struct InteractionData { |
78 |
pair<AtomType*, AtomType*> atypes; /**< pair of atom types interacting */ |
79 |
Vector3d* d; /**< interatomic vector (already wrapped into box) */ |
80 |
RealType* rij; /**< interatomic separation */ |
81 |
RealType* r2; /**< square of rij */ |
82 |
RealType* rcut; /**< cutoff radius for this interaction */ |
83 |
bool shiftedPot; /**< shift the potential up inside the cutoff? */ |
84 |
bool shiftedForce; /**< shifted forces smoothly inside the cutoff? */ |
85 |
RealType* sw; /**< switching function value at rij */ |
86 |
int* topoDist; /**< topological distance between atoms */ |
87 |
bool excluded; /**< is this excluded from *direct* pairwise interactions? (some indirect interactions may still apply) */ |
88 |
RealType* vdwMult; /**< multiplier for van der Waals interactions */ |
89 |
RealType* electroMult; /**< multiplier for electrostatic interactions */ |
90 |
potVec* pot; /**< total potential */ |
91 |
RealType* vpair; /**< pair potential */ |
92 |
bool doParticlePot; /**< should we bother with the particle pot? */ |
93 |
RealType* particlePot1; /**< pointer to particle potential for atom1 */ |
94 |
RealType* particlePot2; /**< pointer to particle potential for atom2 */ |
95 |
Vector3d* f1; /**< force between the two atoms */ |
96 |
Mat3x3d* eFrame1; /**< pointer to electrostatic frame for atom 1 */ |
97 |
Mat3x3d* eFrame2; /**< pointer to electrostatic frame for atom 2 */ |
98 |
RotMat3x3d* A1; /**< pointer to rotation matrix of first atom */ |
99 |
RotMat3x3d* A2; /**< pointer to rotation matrix of second atom */ |
100 |
Vector3d* t1; /**< pointer to torque on first atom */ |
101 |
Vector3d* t2; /**< pointer to torque on second atom */ |
102 |
RealType* rho1; /**< total electron density at first atom */ |
103 |
RealType* rho2; /**< total electron density at second atom */ |
104 |
RealType* frho1; /**< density functional at first atom */ |
105 |
RealType* frho2; /**< density functional at second atom */ |
106 |
RealType* dfrho1; /**< derivative of functional for atom 1 */ |
107 |
RealType* dfrho2; /**< derivative of functional for atom 2 */ |
108 |
RealType* skippedCharge1; /**< charge skipped on atom1 in pairwise interaction loop with atom2 */ |
109 |
RealType* skippedCharge2; /**< charge skipped on atom2 in pairwise interaction loop with atom1 */ |
110 |
}; |
111 |
|
112 |
/** |
113 |
* The SelfData struct. |
114 |
* |
115 |
* This is used to pass pointers to data for the self-interaction or |
116 |
* derived information on a single atom after a pass through all |
117 |
* other interactions. This is used by electrostatic methods that |
118 |
* have long-range corrections involving interactions with a medium |
119 |
* or a boundary and also by specific metal interactions for |
120 |
* electron density functional calculations. Not all of the struct |
121 |
* members are utilized by any given self interaction. |
122 |
*/ |
123 |
struct SelfData { |
124 |
AtomType* atype; /**< pointer to AtomType of the atom */ |
125 |
Mat3x3d* eFrame; /**< pointer to electrostatic frame for atom */ |
126 |
RealType* skippedCharge;/**< charge skipped in pairwise interaction loop */ |
127 |
potVec* pot; /**< total potential */ |
128 |
bool doParticlePot; /**< should we bother with the particle pot? */ |
129 |
RealType* particlePot; /**< contribution to potential from this particle */ |
130 |
Vector3d* t; /**< pointer to resultant torque on atom */ |
131 |
RealType* rho; /**< electron density */ |
132 |
RealType* frho; /**< value of density functional for atom */ |
133 |
RealType* dfrhodrho; /**< derivative of density functional for atom */ |
134 |
}; |
135 |
|
136 |
|
137 |
/** |
138 |
* The basic interface for non-bonded interactions. |
139 |
*/ |
140 |
class NonBondedInteraction { |
141 |
public: |
142 |
NonBondedInteraction() {} |
143 |
virtual ~NonBondedInteraction() {} |
144 |
virtual void calcForce(InteractionData &idat) = 0; |
145 |
virtual InteractionFamily getFamily() = 0; |
146 |
virtual RealType getSuggestedCutoffRadius(pair<AtomType*, AtomType*> atypes) = 0; |
147 |
virtual string getName() = 0; |
148 |
}; |
149 |
|
150 |
/** |
151 |
* The basic interface for van der Waals interactions. |
152 |
*/ |
153 |
class VanDerWaalsInteraction : public NonBondedInteraction { |
154 |
public: |
155 |
VanDerWaalsInteraction() : NonBondedInteraction() { } |
156 |
virtual ~VanDerWaalsInteraction() {} |
157 |
virtual InteractionFamily getFamily() {return VANDERWAALS_FAMILY;} |
158 |
}; |
159 |
|
160 |
/** |
161 |
* The basic interface for electrostatic interactions. |
162 |
*/ |
163 |
class ElectrostaticInteraction : public NonBondedInteraction { |
164 |
public: |
165 |
ElectrostaticInteraction() : NonBondedInteraction() { } |
166 |
virtual ~ElectrostaticInteraction() {} |
167 |
virtual void calcSelfCorrection(SelfData &sdat) = 0; |
168 |
virtual InteractionFamily getFamily() {return ELECTROSTATIC_FAMILY;} |
169 |
}; |
170 |
|
171 |
/** |
172 |
* The basic interface for metallic interactions. |
173 |
*/ |
174 |
class MetallicInteraction : public NonBondedInteraction { |
175 |
public: |
176 |
MetallicInteraction() : NonBondedInteraction() { } |
177 |
virtual ~MetallicInteraction() {} |
178 |
virtual void calcDensity(InteractionData &idat) = 0; |
179 |
virtual void calcFunctional(SelfData &sdat) = 0; |
180 |
virtual InteractionFamily getFamily() {return METALLIC_FAMILY;} |
181 |
}; |
182 |
|
183 |
/** |
184 |
* The basic interface for hydrogen bonding interactions. |
185 |
*/ |
186 |
class HydrogenBondingInteraction : public NonBondedInteraction { |
187 |
public: |
188 |
HydrogenBondingInteraction() : NonBondedInteraction() { } |
189 |
virtual ~HydrogenBondingInteraction() {} |
190 |
virtual InteractionFamily getFamily() {return HYDROGENBONDING_FAMILY;} |
191 |
}; |
192 |
|
193 |
} //end namespace OpenMD |
194 |
#endif |