ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/nonbonded/NonBondedInteraction.hpp
Revision: 2046
Committed: Tue Dec 2 22:11:04 2014 UTC (10 years, 9 months ago) by gezelter
File size: 11478 byte(s)
Log Message:
Fixed some broken comments for use with Doxygen.
Made changes to allow topology-based force-field overrides in include files.
Fixed a calculation of box quadrupole moments for molecules with point dipoles.

File Contents

# User Rev Content
1 gezelter 1502 /*
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 gezelter 1879 * [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 234107 (2008).
39 gezelter 1665 * [4] Kuang & Gezelter, J. Chem. Phys. 133, 164101 (2010).
40     * [5] Vardeman, Stocker & Gezelter, J. Chem. Theory Comput. 7, 834 (2011).
41 gezelter 1502 */
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 gezelter 1582 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 gezelter 1502 };
67    
68 gezelter 1895 /**
69 gezelter 1927 * Boolean flags for the iHash_ and sHash_ data structures. These
70     * are used to greatly increase the speed of looking up the
71     * low-level interaction for any given pair:
72 gezelter 1895 */
73 gezelter 1927 const static int ELECTROSTATIC_INTERACTION = (1 << 0);
74     const static int LJ_INTERACTION = (1 << 1);
75     const static int EAM_INTERACTION = (1 << 2);
76     const static int SC_INTERACTION = (1 << 3);
77     const static int STICKY_INTERACTION = (1 << 4);
78     const static int GB_INTERACTION = (1 << 5);
79     const static int MORSE_INTERACTION = (1 << 6);
80     const static int REPULSIVEPOWER_INTERACTION = (1 << 7);
81     const static int MAW_INTERACTION = (1 << 8);
82 gezelter 1895
83 gezelter 1554 typedef Vector<RealType, N_INTERACTION_FAMILIES> potVec;
84    
85 gezelter 1502 /**
86     * The InteractionData struct.
87     *
88 gezelter 1554 * This is used to pass pointers to data to specific non-bonded
89     * interactions for force calculations. Not all of the struct
90     * members are utilized by any given interaction.
91 gezelter 1502 */
92     struct InteractionData {
93 gezelter 1930 //pair<AtomType*, AtomType*> atypes; /**< pair of atom types interacting */
94 gezelter 2046 /*@{*/
95 gezelter 1895 int atid1; /**< atomType ident for atom 1 */
96     int atid2; /**< atomType ident for atom 2 */
97 gezelter 1554 Vector3d* d; /**< interatomic vector (already wrapped into box) */
98     RealType* rij; /**< interatomic separation */
99     RealType* r2; /**< square of rij */
100     RealType* rcut; /**< cutoff radius for this interaction */
101 gezelter 1583 bool shiftedPot; /**< shift the potential up inside the cutoff? */
102     bool shiftedForce; /**< shifted forces smoothly inside the cutoff? */
103 gezelter 1554 RealType* sw; /**< switching function value at rij */
104     int* topoDist; /**< topological distance between atoms */
105 gezelter 1587 bool excluded; /**< is this excluded from *direct* pairwise interactions? (some indirect interactions may still apply) */
106 gezelter 1929 bool sameRegion; /**< are these atoms specified to be in the same region? */
107 gezelter 1554 RealType* vdwMult; /**< multiplier for van der Waals interactions */
108     RealType* electroMult; /**< multiplier for electrostatic interactions */
109     potVec* pot; /**< total potential */
110 gezelter 1760 potVec* excludedPot; /**< potential energy excluded from the overall calculation */
111 gezelter 1554 RealType* vpair; /**< pair potential */
112 gezelter 1711 bool doParticlePot; /**< should we bother with the particle pot? */
113 gezelter 1879 bool doElectricField; /**< should we bother with the electric field? */
114 gezelter 1993 bool doSitePotential; /**< should we bother with electrostatic site potential */
115 gezelter 1575 RealType* particlePot1; /**< pointer to particle potential for atom1 */
116     RealType* particlePot2; /**< pointer to particle potential for atom2 */
117 gezelter 1554 Vector3d* f1; /**< force between the two atoms */
118     RotMat3x3d* A1; /**< pointer to rotation matrix of first atom */
119     RotMat3x3d* A2; /**< pointer to rotation matrix of second atom */
120 gezelter 1879 Vector3d* dipole1; /**< pointer to dipole vector of first atom */
121     Vector3d* dipole2; /**< pointer to dipole vector of first atom */
122     Mat3x3d* quadrupole1; /**< pointer to quadrupole tensor of first atom */
123     Mat3x3d* quadrupole2; /**< pointer to quadrupole tensor of first atom */
124 gezelter 1554 Vector3d* t1; /**< pointer to torque on first atom */
125     Vector3d* t2; /**< pointer to torque on second atom */
126     RealType* rho1; /**< total electron density at first atom */
127     RealType* rho2; /**< total electron density at second atom */
128 gezelter 1575 RealType* frho1; /**< density functional at first atom */
129     RealType* frho2; /**< density functional at second atom */
130     RealType* dfrho1; /**< derivative of functional for atom 1 */
131     RealType* dfrho2; /**< derivative of functional for atom 2 */
132 gezelter 1721 RealType* flucQ1; /**< fluctuating charge on atom1 */
133     RealType* flucQ2; /**< fluctuating charge on atom2 */
134     RealType* dVdFQ1; /**< fluctuating charge force on atom1 */
135     RealType* dVdFQ2; /**< fluctuating charge force on atom2 */
136     Vector3d* eField1; /**< pointer to electric field on first atom */
137     Vector3d* eField2; /**< pointer to electric field on second atom */
138 gezelter 1587 RealType* skippedCharge1; /**< charge skipped on atom1 in pairwise interaction loop with atom2 */
139     RealType* skippedCharge2; /**< charge skipped on atom2 in pairwise interaction loop with atom1 */
140 gezelter 1993 RealType* sPot1; /**< site potential on first atom */
141     RealType* sPot2; /**< site potential on second atom */
142 gezelter 2046 /*@}*/
143 gezelter 1502 };
144 gezelter 1545
145 gezelter 1502 /**
146 gezelter 1545 * The SelfData struct.
147 gezelter 1502 *
148 gezelter 1554 * This is used to pass pointers to data for the self-interaction or
149     * derived information on a single atom after a pass through all
150     * other interactions. This is used by electrostatic methods that
151     * have long-range corrections involving interactions with a medium
152     * or a boundary and also by specific metal interactions for
153     * electron density functional calculations. Not all of the struct
154     * members are utilized by any given self interaction.
155 gezelter 1502 */
156 gezelter 1545 struct SelfData {
157 gezelter 1930 //AtomType* atype; /**< pointer to AtomType of the atom */
158 gezelter 2046 /*@{*/
159 gezelter 1895 int atid; /**< atomType ident for the atom */
160 gezelter 1879 Vector3d* dipole; /**< pointer to dipole vector of the atom */
161     Mat3x3d* quadrupole; /**< pointer to quadrupole tensor of the atom */
162 gezelter 1575 RealType* skippedCharge;/**< charge skipped in pairwise interaction loop */
163     potVec* pot; /**< total potential */
164 gezelter 1761 potVec* excludedPot; /**< potential energy excluded from the overall calculation */
165 gezelter 1711 bool doParticlePot; /**< should we bother with the particle pot? */
166 gezelter 1575 RealType* particlePot; /**< contribution to potential from this particle */
167     Vector3d* t; /**< pointer to resultant torque on atom */
168     RealType* rho; /**< electron density */
169     RealType* frho; /**< value of density functional for atom */
170     RealType* dfrhodrho; /**< derivative of density functional for atom */
171 jmichalk 1734 RealType* flucQ; /**< current value of atom's fluctuating charge */
172 gezelter 1929 RealType* flucQfrc; /**< fluctuating charge derivative */
173 gezelter 2046 /*@}*/
174 gezelter 1502 };
175    
176    
177     /**
178     * The basic interface for non-bonded interactions.
179     */
180     class NonBondedInteraction {
181     public:
182     NonBondedInteraction() {}
183     virtual ~NonBondedInteraction() {}
184 gezelter 1536 virtual void calcForce(InteractionData &idat) = 0;
185 gezelter 1502 virtual InteractionFamily getFamily() = 0;
186 gezelter 1895 virtual int getHash() = 0;
187 gezelter 1545 virtual RealType getSuggestedCutoffRadius(pair<AtomType*, AtomType*> atypes) = 0;
188 gezelter 1502 virtual string getName() = 0;
189     };
190    
191     /**
192     * The basic interface for van der Waals interactions.
193     */
194     class VanDerWaalsInteraction : public NonBondedInteraction {
195     public:
196     VanDerWaalsInteraction() : NonBondedInteraction() { }
197     virtual ~VanDerWaalsInteraction() {}
198     virtual InteractionFamily getFamily() {return VANDERWAALS_FAMILY;}
199     };
200    
201     /**
202     * The basic interface for electrostatic interactions.
203     */
204     class ElectrostaticInteraction : public NonBondedInteraction {
205     public:
206     ElectrostaticInteraction() : NonBondedInteraction() { }
207     virtual ~ElectrostaticInteraction() {}
208 gezelter 1545 virtual void calcSelfCorrection(SelfData &sdat) = 0;
209 gezelter 1895 virtual InteractionFamily getFamily() {return ELECTROSTATIC_FAMILY;}
210 gezelter 1927 virtual int getHash() {return ELECTROSTATIC_INTERACTION;}
211 gezelter 1502 };
212    
213     /**
214     * The basic interface for metallic interactions.
215     */
216     class MetallicInteraction : public NonBondedInteraction {
217     public:
218     MetallicInteraction() : NonBondedInteraction() { }
219     virtual ~MetallicInteraction() {}
220 gezelter 1545 virtual void calcDensity(InteractionData &idat) = 0;
221     virtual void calcFunctional(SelfData &sdat) = 0;
222 gezelter 1502 virtual InteractionFamily getFamily() {return METALLIC_FAMILY;}
223     };
224    
225     /**
226     * The basic interface for hydrogen bonding interactions.
227     */
228     class HydrogenBondingInteraction : public NonBondedInteraction {
229     public:
230     HydrogenBondingInteraction() : NonBondedInteraction() { }
231     virtual ~HydrogenBondingInteraction() {}
232     virtual InteractionFamily getFamily() {return HYDROGENBONDING_FAMILY;}
233     };
234    
235     } //end namespace OpenMD
236     #endif

Properties

Name Value
svn:eol-style native
svn:executable *