ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/visitors/ReplacementVisitor.cpp
Revision: 1665
Committed: Tue Nov 22 20:38:56 2011 UTC (13 years, 8 months ago) by gezelter
File size: 6408 byte(s)
Log Message:
updated copyright notices

File Contents

# Content
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 #include <cstring>
44 #include "visitors/ReplacementVisitor.hpp"
45 #include "primitives/DirectionalAtom.hpp"
46 #include "primitives/RigidBody.hpp"
47
48 namespace OpenMD {
49
50 void ReplacementVisitor::addReplacedAtomName(const std::string& repName) {
51 myTypes_.insert(repName);
52 }
53
54 ReplacementVisitor::~ReplacementVisitor(){
55 delete sites_;
56 myTypes_.clear();
57 }
58
59 bool ReplacementVisitor::isReplacedAtom(const std::string& atomType) {
60 std::set<std::string>::iterator strIter;
61 strIter = myTypes_.find(atomType);
62 return strIter != myTypes_.end() ? true : false;
63 }
64
65 void ReplacementVisitor::addSite(const std::string& name,
66 const Vector3d refPos) {
67 AtomInfo* atomInfo = new AtomInfo();
68 atomInfo->atomTypeName = name;
69 atomInfo->pos = refPos;
70 sites_->addAtomInfo(atomInfo);
71 }
72 void ReplacementVisitor::addSite(const std::string& name,
73 const Vector3d refPos,
74 const Vector3d refVec) {
75 AtomInfo* atomInfo = new AtomInfo();
76 atomInfo->atomTypeName = name;
77 atomInfo->pos = refPos;
78 atomInfo->vec = refVec;
79 atomInfo->hasVector = true;
80 sites_->addAtomInfo(atomInfo);
81 }
82
83 void ReplacementVisitor::visit(DirectionalAtom *datom) {
84 std::vector<AtomInfo*>atoms;
85
86 RotMat3x3d A;
87 RotMat3x3d Atrans;
88 Mat3x3d I;
89 Vector3d pos;
90 Vector3d vel;
91 Vector3d frc;
92 Vector3d trq;
93 Vector3d j;
94 Mat3x3d skewMat;
95
96 Vector3d newVec;
97 AtomInfo * atomInfo;
98 AtomData * atomData;
99 GenericData *data;
100 bool haveAtomData;
101
102 //if atom is not one of our recognized atom types, just skip it
103 if (!isReplacedAtom(datom->getType()))
104 return;
105
106 data = datom->getPropertyByName("ATOMDATA");
107
108 if (data != NULL) {
109 atomData = dynamic_cast<AtomData *>(data);
110
111 if (atomData == NULL) {
112 std::cerr << "can not get Atom Data from " << datom->getType() << std::endl;
113 atomData = new AtomData;
114 haveAtomData = false;
115 } else
116 haveAtomData = true;
117 } else {
118 atomData = new AtomData;
119 haveAtomData = false;
120 }
121
122 pos = datom->getPos();
123 vel = datom->getVel();
124
125 j = datom->getJ();
126 I = datom->getI();
127 A = datom->getA();
128
129 skewMat(0, 0) = 0;
130 skewMat(0, 1) = j[2] / I(2, 2);
131 skewMat(0, 2) = -j[1] / I(1, 1);
132 skewMat(1, 0) = -j[2] / I(2, 2);
133 skewMat(1, 1) = 0;
134 skewMat(1, 2) = j[0] / I(0, 0);
135 skewMat(2, 0) = j[1] / I(1, 1);
136 skewMat(2, 1) = -j[0] / I(0, 0);
137 skewMat(2, 2) = 0;
138 Mat3x3d mat = (A * skewMat).transpose();
139
140 // We need A^T to convert from body-fixed to space-fixed:
141 Atrans = A.transpose();
142
143 AtomInfo* siteInfo;
144 std::vector<AtomInfo*>::iterator iter;
145
146 for( siteInfo = sites_->beginAtomInfo(iter); siteInfo;
147 siteInfo = sites_->nextAtomInfo(iter) ) {
148
149 newVec = Atrans * siteInfo->pos;
150
151 atomInfo = new AtomInfo;
152 atomInfo->atomTypeName = siteInfo->atomTypeName;
153 atomInfo->pos = pos + newVec;
154
155 if (siteInfo->hasVector) {
156 newVec = Atrans * siteInfo->vec;
157 atomInfo->vec = newVec;
158 } else {
159 atomInfo->vec = V3Zero;
160 }
161
162 atomInfo->vel = vel + mat * siteInfo->pos;
163 atomInfo->hasVelocity = true;
164
165 atomData->addAtomInfo(atomInfo);
166 }
167 if (!haveAtomData) {
168 atomData->setID("ATOMDATA");
169 datom->addProperty(atomData);
170 }
171
172 setVisited(datom);
173 }
174
175 const std::string ReplacementVisitor::toString() {
176 char buffer[65535];
177 std::string result;
178
179 sprintf(buffer,
180 "------------------------------------------------------------------\n");
181 result += buffer;
182
183 sprintf(buffer, "Visitor name: %s\n", visitorName.c_str());
184 result += buffer;
185
186 sprintf(buffer,
187 "Visitor Description: replace atom with other sites\n");
188 result += buffer;
189
190 sprintf(buffer,
191 "------------------------------------------------------------------\n");
192 result += buffer;
193
194 return result;
195 }
196 }

Properties

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