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