ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/devel_omp/src/nonbonded/NonBondedInteraction.hpp
Revision: 1608
Committed: Tue Aug 9 01:58:56 2011 UTC (13 years, 11 months ago) by mciznick
File size: 11273 byte(s)
Log Message:
First OpenMP version.

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     * [3] Sun, Lin & Gezelter, J. Chem. Phys. 128, 24107 (2008).
39     * [4] Vardeman & Gezelter, in progress (2009).
40     */
41    
42     #ifndef NONBONDED_NONBONDEDINTERACTION_HPP
43     #define NONBONDED_NONBONDEDINTERACTION_HPP
44    
45     #include "types/AtomType.hpp"
46     #include "math/SquareMatrix3.hpp"
47    
48     using namespace std;
49     namespace OpenMD {
50    
51     /**
52     * The InteractionFamily enum.
53     *
54     * This is used to sort different types of non-bonded interaction
55     * and to prevent multiple interactions in the same family from
56     * being applied to any given pair of atom types.
57     */
58     enum InteractionFamily {
59 gezelter 1582 NO_FAMILY = 0, /**< No family defined */
60     VANDERWAALS_FAMILY = 1, /**< Long-range dispersion and short-range pauli repulsion */
61     ELECTROSTATIC_FAMILY = 2, /**< Coulombic and point-multipole interactions */
62     METALLIC_FAMILY = 3, /**< Transition metal interactions involving electron density */
63     HYDROGENBONDING_FAMILY = 4,/**< Short-range directional interactions */
64     N_INTERACTION_FAMILIES = 5
65 gezelter 1502 };
66    
67 gezelter 1554 typedef Vector<RealType, N_INTERACTION_FAMILIES> potVec;
68    
69 gezelter 1502 /**
70     * The InteractionData struct.
71     *
72 gezelter 1554 * This is used to pass pointers to data to specific non-bonded
73     * interactions for force calculations. Not all of the struct
74     * members are utilized by any given interaction.
75 gezelter 1502 */
76     struct InteractionData {
77 gezelter 1571 pair<AtomType*, AtomType*> atypes; /**< pair of atom types interacting */
78 gezelter 1554 Vector3d* d; /**< interatomic vector (already wrapped into box) */
79     RealType* rij; /**< interatomic separation */
80     RealType* r2; /**< square of rij */
81     RealType* rcut; /**< cutoff radius for this interaction */
82 gezelter 1583 bool shiftedPot; /**< shift the potential up inside the cutoff? */
83     bool shiftedForce; /**< shifted forces smoothly inside the cutoff? */
84 gezelter 1554 RealType* sw; /**< switching function value at rij */
85     int* topoDist; /**< topological distance between atoms */
86 gezelter 1587 bool excluded; /**< is this excluded from *direct* pairwise interactions? (some indirect interactions may still apply) */
87 gezelter 1554 RealType* vdwMult; /**< multiplier for van der Waals interactions */
88     RealType* electroMult; /**< multiplier for electrostatic interactions */
89     potVec* pot; /**< total potential */
90     RealType* vpair; /**< pair potential */
91 gezelter 1575 RealType* particlePot1; /**< pointer to particle potential for atom1 */
92     RealType* particlePot2; /**< pointer to particle potential for atom2 */
93 gezelter 1554 Vector3d* f1; /**< force between the two atoms */
94 gezelter 1575 Mat3x3d* eFrame1; /**< pointer to electrostatic frame for atom 1 */
95     Mat3x3d* eFrame2; /**< pointer to electrostatic frame for atom 2 */
96 gezelter 1554 RotMat3x3d* A1; /**< pointer to rotation matrix of first atom */
97     RotMat3x3d* A2; /**< pointer to rotation matrix of second atom */
98     Vector3d* t1; /**< pointer to torque on first atom */
99     Vector3d* t2; /**< pointer to torque on second atom */
100     RealType* rho1; /**< total electron density at first atom */
101     RealType* rho2; /**< total electron density at second atom */
102 gezelter 1575 RealType* frho1; /**< density functional at first atom */
103     RealType* frho2; /**< density functional at second atom */
104     RealType* dfrho1; /**< derivative of functional for atom 1 */
105     RealType* dfrho2; /**< derivative of functional for atom 2 */
106 gezelter 1587 RealType* skippedCharge1; /**< charge skipped on atom1 in pairwise interaction loop with atom2 */
107     RealType* skippedCharge2; /**< charge skipped on atom2 in pairwise interaction loop with atom1 */
108 gezelter 1502 };
109 mciznick 1608
110     /* Read and write values */
111     struct InteractionDataPrv {
112     bool shiftedPot; /**< shift the potential up inside the cutoff? */
113     bool shiftedForce; /**< shifted forces smoothly inside the cutoff? */
114    
115     /* Write values */
116     RealType sw; /**< switching function value at rij */
117     potVec pot; /**< total potential */
118     RealType vpair; /**< pair potential */
119     Vector3d f1; /**< force between the two atoms */
120    
121     bool excluded; /**< is this excluded from *direct* pairwise interactions? (some indirect interactions may still apply) */
122     pair<AtomType*, AtomType*> atypes; /**< pair of atom types interacting */
123     RotMat3x3d* A1; /**< pointer to rotation matrix of first atom */
124     RotMat3x3d* A2; /**< pointer to rotation matrix of second atom */
125     Mat3x3d* eFrame1; /**< pointer to electrostatic frame for atom 1 */
126     Mat3x3d* eFrame2; /**< pointer to electrostatic frame for atom 2 */
127     Vector3d* t1; /**< pointer to torque on first atom */
128     Vector3d* t2; /**< pointer to torque on second atom */
129     RealType* rho1; /**< total electron density at first atom */
130     RealType* rho2; /**< total electron density at second atom */
131     RealType* frho1; /**< density functional at first atom */
132     RealType* frho2; /**< density functional at second atom */
133     RealType* dfrho1; /**< derivative of functional for atom 1 */
134     RealType* dfrho2; /**< derivative of functional for atom 2 */
135     RealType* particlePot1; /**< pointer to particle potential for atom1 */
136     RealType* particlePot2; /**< pointer to particle potential for atom2 */
137     RealType* skippedCharge1; /**< charge skipped on atom1 in pairwise interaction loop with atom2 */
138     RealType* skippedCharge2; /**< charge skipped on atom2 in pairwise interaction loop with atom1 */
139    
140     RealType vdwMult; /**< multiplier for van der Waals interactions */
141     RealType electroMult; /**< multiplier for electrostatic interactions */
142     Vector3d d; /**< interatomic vector (already wrapped into box) */
143     RealType r2; /**< square of rij */
144     RealType rij; /**< interatomic separation */
145    
146     /* Read values */
147     RealType rcut; /**< cutoff radius for this interaction */
148     int* topoDist; /**< topological distance between atoms */
149     };
150    
151 gezelter 1502 /**
152 gezelter 1545 * The SelfData struct.
153 gezelter 1502 *
154 gezelter 1554 * This is used to pass pointers to data for the self-interaction or
155     * derived information on a single atom after a pass through all
156     * other interactions. This is used by electrostatic methods that
157     * have long-range corrections involving interactions with a medium
158     * or a boundary and also by specific metal interactions for
159     * electron density functional calculations. Not all of the struct
160     * members are utilized by any given self interaction.
161 gezelter 1502 */
162 gezelter 1545 struct SelfData {
163 gezelter 1575 AtomType* atype; /**< pointer to AtomType of the atom */
164     Mat3x3d* eFrame; /**< pointer to electrostatic frame for atom */
165     RealType* skippedCharge;/**< charge skipped in pairwise interaction loop */
166     potVec* pot; /**< total potential */
167     RealType* particlePot; /**< contribution to potential from this particle */
168     Vector3d* t; /**< pointer to resultant torque on atom */
169     RealType* rho; /**< electron density */
170     RealType* frho; /**< value of density functional for atom */
171     RealType* dfrhodrho; /**< derivative of density functional for atom */
172 gezelter 1502 };
173    
174    
175     /**
176     * The basic interface for non-bonded interactions.
177     */
178     class NonBondedInteraction {
179     public:
180     NonBondedInteraction() {}
181     virtual ~NonBondedInteraction() {}
182 gezelter 1536 virtual void calcForce(InteractionData &idat) = 0;
183 gezelter 1502 virtual InteractionFamily getFamily() = 0;
184 gezelter 1545 virtual RealType getSuggestedCutoffRadius(pair<AtomType*, AtomType*> atypes) = 0;
185 gezelter 1502 virtual string getName() = 0;
186     };
187    
188     /**
189     * The basic interface for van der Waals interactions.
190     */
191     class VanDerWaalsInteraction : public NonBondedInteraction {
192     public:
193     VanDerWaalsInteraction() : NonBondedInteraction() { }
194     virtual ~VanDerWaalsInteraction() {}
195     virtual InteractionFamily getFamily() {return VANDERWAALS_FAMILY;}
196     };
197    
198     /**
199     * The basic interface for electrostatic interactions.
200     */
201     class ElectrostaticInteraction : public NonBondedInteraction {
202     public:
203     ElectrostaticInteraction() : NonBondedInteraction() { }
204     virtual ~ElectrostaticInteraction() {}
205 gezelter 1545 virtual void calcSelfCorrection(SelfData &sdat) = 0;
206 gezelter 1536 virtual InteractionFamily getFamily() {return ELECTROSTATIC_FAMILY;}
207 gezelter 1502 };
208    
209     /**
210     * The basic interface for metallic interactions.
211     */
212     class MetallicInteraction : public NonBondedInteraction {
213     public:
214     MetallicInteraction() : NonBondedInteraction() { }
215     virtual ~MetallicInteraction() {}
216 gezelter 1545 virtual void calcDensity(InteractionData &idat) = 0;
217     virtual void calcFunctional(SelfData &sdat) = 0;
218 gezelter 1502 virtual InteractionFamily getFamily() {return METALLIC_FAMILY;}
219     };
220    
221     /**
222     * The basic interface for hydrogen bonding interactions.
223     */
224     class HydrogenBondingInteraction : public NonBondedInteraction {
225     public:
226     HydrogenBondingInteraction() : NonBondedInteraction() { }
227     virtual ~HydrogenBondingInteraction() {}
228     virtual InteractionFamily getFamily() {return HYDROGENBONDING_FAMILY;}
229     };
230    
231     } //end namespace OpenMD
232     #endif

Properties

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