ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/visitors/ReplacementVisitor.cpp
Revision: 1456
Committed: Fri Jun 25 17:40:24 2010 UTC (14 years, 10 months ago) by gezelter
File size: 6395 byte(s)
Log Message:
more changes to make Dump2XYZ do velocities & forces

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] 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 frc = datom->getFrc();
124 trq = datom->getTrq();
125 j = datom->getJ();
126 I = datom->getI();
127 A = datom->getA();
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
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 *