ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/visitors/ReplacementVisitor.cpp
Revision: 1874
Committed: Wed May 15 15:09:35 2013 UTC (11 years, 11 months ago) by gezelter
File size: 6379 byte(s)
Log Message:
Fixed a bunch of cppcheck warnings.

File Contents

# User Rev Content
1 gezelter 1455 /*
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 1850 * [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 1455 */
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 gezelter 1874 bool ReplacementVisitor::isReplacedAtom(const std::string &atomType) {
60 gezelter 1455 std::set<std::string>::iterator strIter;
61     strIter = myTypes_.find(atomType);
62     return strIter != myTypes_.end() ? true : false;
63     }
64    
65 gezelter 1874 void ReplacementVisitor::addSite(const std::string &name,
66     const Vector3d &refPos) {
67 gezelter 1455 AtomInfo* atomInfo = new AtomInfo();
68     atomInfo->atomTypeName = name;
69     atomInfo->pos = refPos;
70     sites_->addAtomInfo(atomInfo);
71     }
72 gezelter 1874 void ReplacementVisitor::addSite(const std::string &name,
73     const Vector3d &refPos,
74     const Vector3d &refVec) {
75 gezelter 1455 AtomInfo* atomInfo = new AtomInfo();
76     atomInfo->atomTypeName = name;
77     atomInfo->pos = refPos;
78 gezelter 1456 atomInfo->vec = refVec;
79 gezelter 1455 atomInfo->hasVector = true;
80     sites_->addAtomInfo(atomInfo);
81     }
82    
83     void ReplacementVisitor::visit(DirectionalAtom *datom) {
84    
85 gezelter 1456 RotMat3x3d A;
86     RotMat3x3d Atrans;
87     Mat3x3d I;
88 gezelter 1455 Vector3d pos;
89 gezelter 1456 Vector3d vel;
90     Vector3d frc;
91     Vector3d trq;
92     Vector3d j;
93     Mat3x3d skewMat;
94    
95 gezelter 1455 Vector3d newVec;
96 gezelter 1456 AtomInfo * atomInfo;
97 gezelter 1455 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 gezelter 1456
121 gezelter 1455 pos = datom->getPos();
122 gezelter 1456 vel = datom->getVel();
123 gezelter 1457
124 gezelter 1456 j = datom->getJ();
125     I = datom->getI();
126     A = datom->getA();
127 gezelter 1457
128 gezelter 1456 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 gezelter 1455
139     // We need A^T to convert from body-fixed to space-fixed:
140 gezelter 1456 Atrans = A.transpose();
141 gezelter 1455
142     AtomInfo* siteInfo;
143     std::vector<AtomInfo*>::iterator iter;
144    
145     for( siteInfo = sites_->beginAtomInfo(iter); siteInfo;
146     siteInfo = sites_->nextAtomInfo(iter) ) {
147    
148 gezelter 1456 newVec = Atrans * siteInfo->pos;
149 gezelter 1455
150     atomInfo = new AtomInfo;
151     atomInfo->atomTypeName = siteInfo->atomTypeName;
152     atomInfo->pos = pos + newVec;
153    
154     if (siteInfo->hasVector) {
155 gezelter 1456 newVec = Atrans * siteInfo->vec;
156     atomInfo->vec = newVec;
157 gezelter 1455 } else {
158 gezelter 1456 atomInfo->vec = V3Zero;
159 gezelter 1455 }
160 gezelter 1456
161     atomInfo->vel = vel + mat * siteInfo->pos;
162     atomInfo->hasVelocity = true;
163    
164 gezelter 1455 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     }

Properties

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