ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/visitors/AtomVisitor.cpp
(Generate patch)

Comparing:
trunk/src/visitors/AtomVisitor.cpp (file contents), Revision 132 by tim, Thu Oct 21 16:22:01 2004 UTC vs.
branches/development/src/visitors/AtomVisitor.cpp (file contents), Revision 1665 by gezelter, Tue Nov 22 20:38:56 2011 UTC

# Line 1 | Line 1
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/AtomVisitor.hpp"
45   #include "primitives/DirectionalAtom.hpp"
4 #include "math/MatVec3.h"
46   #include "primitives/RigidBody.hpp"
47  
48 < namespace oopse {
48 > namespace OpenMD {
49 >  void BaseAtomVisitor::visit(RigidBody *rb) {
50 >    //vector<Atom*> myAtoms;
51 >    //vector<Atom*>::iterator atomIter;
52  
53 < void BaseAtomVisitor::visit(RigidBody* rb){
10 <  //vector<Atom*> myAtoms;
11 <  //vector<Atom*>::iterator atomIter;
53 >    //myAtoms = rb->getAtoms();
54  
55 <  //myAtoms = rb->getAtoms();
56 <  
15 <  //for(atomIter = myAtoms.begin(); atomIter != myAtoms.end(); ++atomIter)
16 <  //  (*atomIter)->accept(this);
17 < }
18 <
19 < void BaseAtomVisitor::setVisited(Atom* atom){
20 <  GenericData* data;
21 <  data = atom->getProperty("VISITED");
22 <
23 <  //if visited property is not existed, add it as new property
24 <  if(data == NULL){
25 <    data = new GenericData();
26 <    data->setID("VISITED");
27 <    atom->addProperty(data);  
55 >    //for(atomIter = myAtoms.begin(); atomIter != myAtoms.end(); ++atomIter)
56 >    //  (*atomIter)->accept(this);
57    }
29 }
58  
59 < bool BaseAtomVisitor::isVisited(Atom* atom){
60 <  GenericData* data;
61 <  data = atom->getProperty("VISITED");
34 <  return data == NULL ?  false : true;
35 < }
59 >  void BaseAtomVisitor::setVisited(Atom *atom) {
60 >    GenericData *data;
61 >    data = atom->getPropertyByName("VISITED");
62  
63 < bool SSDAtomVisitor::isSSDAtom(const string& atomType){
64 <  vector<string>::iterator strIter;
65 <  
66 <  for(strIter = ssdAtomType.begin(); strIter != ssdAtomType.end(); ++strIter)
67 <   if(*strIter == atomType)
42 <    return true;
43 <  
44 <  return false;  
45 < }
46 <
47 < void SSDAtomVisitor::visit(DirectionalAtom* datom){
48 <
49 <  vector<AtomInfo*> atoms;
50 <
51 <  //we need to convert SSD into 4 differnet atoms
52 <  //one oxygen atom, two hydrogen atoms and one pseudo atom which is the center of the mass
53 <  //of the water with a dipole moment
54 <  double h1[3] = {0.0, -0.75695, 0.5206};
55 <  double h2[3] = {0.0, 0.75695, 0.5206};
56 <  double ox[3] = {0.0, 0.0, -0.0654};
57 <  double u[3] = {0, 0, 1};
58 <  double rotMatrix[3][3];
59 <  double rotTrans[3][3];
60 <  AtomInfo* atomInfo;
61 <  double pos[3];
62 <  double newVec[3];
63 <  double q[4];
64 <  AtomData* atomData;
65 <  GenericData* data;
66 <  bool haveAtomData;
67 <  
68 <  //if atom is not SSD atom, just skip it
69 <  if(!isSSDAtom(datom->getType()))
70 <    return;
71 <
72 <  data = datom->getProperty("ATOMDATA");
73 <  if(data != NULL){
74 <
75 <    atomData = dynamic_cast<AtomData*>(data);  
76 <    if(atomData == NULL){
77 <      cerr << "can not get Atom Data from " << datom->getType() << endl;
78 <      atomData = new AtomData;
79 <      haveAtomData = false;      
63 >    //if visited property is not existed, add it as new property
64 >    if (data == NULL) {
65 >      data = new GenericData();
66 >      data->setID("VISITED");
67 >      atom->addProperty(data);
68      }
81    else
82      haveAtomData = true;
69    }
70 <  else{
71 <    atomData = new AtomData;
72 <    haveAtomData = false;
70 >
71 >  bool BaseAtomVisitor::isVisited(Atom *atom) {
72 >    GenericData *data;
73 >    data = atom->getPropertyByName("VISITED");
74 >    return data == NULL ? false : true;
75    }
88  
89  
90  datom->getPos(pos);
91  datom->getQ(q);
92  datom->getA(rotMatrix);
76  
77 <  // We need A^T to convert from body-fixed to space-fixed:
78 <  transposeMat3(rotMatrix, rotTrans);
79 <  
80 <  //center of mass of the water molecule
81 <  matVecMul3(rotTrans, u, newVec);
82 <  atomInfo = new AtomInfo;
83 <  atomInfo->AtomType = "X";
84 <  atomInfo->pos[0] = pos[0];
85 <  atomInfo->pos[1] = pos[1];
86 <  atomInfo->pos[2] = pos[2];
104 <  atomInfo->dipole[0] = newVec[0];
105 <  atomInfo->dipole[1] = newVec[1];
106 <  atomInfo->dipole[2] = newVec[2];
77 >  //------------------------------------------------------------------------//
78 >        
79 >  void DefaultAtomVisitor::visit(Atom *atom) {
80 >    AtomData *atomData;
81 >    AtomInfo *atomInfo;
82 >    Vector3d  pos;
83 >    Vector3d  vel;
84 >    Vector3d  frc;
85 >    Vector3d  u;
86 >    RealType  c;
87  
88 <  atomData->addAtomInfo(atomInfo);
89 <
90 <  //oxygen
91 <  matVecMul3(rotTrans, ox, newVec);
92 <  atomInfo = new AtomInfo;
93 <  atomInfo->AtomType = "O";
114 <  atomInfo->pos[0] = pos[0] + newVec[0];
115 <  atomInfo->pos[1] = pos[1] + newVec[1];
116 <  atomInfo->pos[2] = pos[2] + newVec[2];
117 <  atomInfo->dipole[0] = 0.0;
118 <  atomInfo->dipole[1] = 0.0;
119 <  atomInfo->dipole[2] = 0.0;
120 <  atomData->addAtomInfo(atomInfo);
121 <
122 <
123 <  //hydrogen1
124 <    matVecMul3(rotTrans, h1, newVec);
125 <  atomInfo = new AtomInfo;
126 <  atomInfo->AtomType = "H";
127 <  atomInfo->pos[0] = pos[0] + newVec[0];
128 <  atomInfo->pos[1] = pos[1] + newVec[1];
129 <  atomInfo->pos[2] = pos[2] + newVec[2];
130 <  atomInfo->dipole[0] = 0.0;
131 <  atomInfo->dipole[1] = 0.0;
132 <  atomInfo->dipole[2] = 0.0;
133 <  atomData->addAtomInfo(atomInfo);
134 <
135 <  //hydrogen2
136 <  matVecMul3(rotTrans, h2, newVec);
137 <  atomInfo = new AtomInfo;
138 <  atomInfo->AtomType = "H";
139 <  atomInfo->pos[0] = pos[0] + newVec[0];
140 <  atomInfo->pos[1] = pos[1] + newVec[1];
141 <  atomInfo->pos[2] = pos[2] + newVec[2];
142 <  atomInfo->dipole[0] = 0.0;
143 <  atomInfo->dipole[1] = 0.0;
144 <  atomInfo->dipole[2] = 0.0;
145 <  atomData->addAtomInfo(atomInfo);
146 <
147 <  //add atom data into atom's property
148 <
149 <  if(!haveAtomData){
88 >    if (isVisited(atom))
89 >      return;
90 >    
91 >    atomInfo = new AtomInfo;
92 >    
93 >    atomData = new AtomData;
94      atomData->setID("ATOMDATA");
95 <    datom->addProperty(atomData);
95 >    
96 >    pos = atom->getPos();
97 >    vel = atom->getVel();
98 >    frc = atom->getFrc();
99 >    atomInfo->atomTypeName = atom->getType();
100 >    atomInfo->pos[0] = pos[0];
101 >    atomInfo->pos[1] = pos[1];
102 >    atomInfo->pos[2] = pos[2];
103 >    atomInfo->vel[0] = vel[0];
104 >    atomInfo->vel[1] = vel[1];
105 >    atomInfo->vel[2] = vel[2];
106 >    atomInfo->hasVelocity = true;
107 >    atomInfo->frc[0] = frc[0];
108 >    atomInfo->frc[1] = frc[1];
109 >    atomInfo->frc[2] = frc[2];
110 >    atomInfo->hasForce = true;
111 >    atomInfo->vec[0] = 0.0;
112 >    atomInfo->vec[1] = 0.0;
113 >    atomInfo->vec[2] = 0.0;
114 >    
115 >    atomData->addAtomInfo(atomInfo);
116 >    
117 >    atom->addProperty(atomData);
118 >    
119 >    setVisited(atom);
120    }
153
154  setVisited(datom);
155
156 }
157
158 const string SSDAtomVisitor::toString(){
159  char buffer[65535];
160  string result;
121    
122 <  sprintf(buffer ,"------------------------------------------------------------------\n");
123 <  result += buffer;
122 >  void DefaultAtomVisitor::visit(DirectionalAtom *datom) {
123 >    AtomData *atomData;
124 >    AtomInfo *atomInfo;
125 >    Vector3d  pos;
126 >    Vector3d  vel;
127 >    Vector3d  frc;
128 >    Vector3d  u;
129 >    RealType  c;
130  
131 <  sprintf(buffer ,"Visitor name: %s\n", visitorName.c_str());
132 <  result += buffer;
131 >    if (isVisited(datom))
132 >      return;
133 >    
134 >    pos = datom->getPos();
135 >    vel = datom->getVel();
136 >    frc = datom->getFrc();
137 >    if (datom->getAtomType()->isGayBerne()) {
138 >        u = datom->getA().transpose()*V3Z;        
139 >    } else if (datom->getAtomType()->isMultipole()) {
140 >        u = datom->getElectroFrame().getColumn(2);
141 >    }
142 >    atomData = new AtomData;
143 >    atomData->setID("ATOMDATA");
144 >    atomInfo = new AtomInfo;
145  
146 <  sprintf(buffer , "Visitor Description: Convert SSD into 4 different atoms\n");
147 <  result += buffer;
146 >    atomInfo->atomTypeName = datom->getType();
147 >    atomInfo->pos[0] = pos[0];
148 >    atomInfo->pos[1] = pos[1];
149 >    atomInfo->pos[2] = pos[2];
150 >    atomInfo->vel[0] = vel[0];
151 >    atomInfo->vel[1] = vel[1];
152 >    atomInfo->vel[2] = vel[2];
153 >    atomInfo->hasVelocity = true;
154 >    atomInfo->frc[0] = frc[0];
155 >    atomInfo->frc[1] = frc[1];
156 >    atomInfo->frc[2] = frc[2];
157 >    atomInfo->hasForce = true;
158 >    atomInfo->vec[0] = u[0];
159 >    atomInfo->vec[1] = u[1];
160 >    atomInfo->vec[2] = u[2];
161 >    atomInfo->hasVector = true;
162  
163 <  sprintf(buffer ,"------------------------------------------------------------------\n");
172 <  result += buffer;
163 >    atomData->addAtomInfo(atomInfo);
164  
165 <  return result;
175 < }
165 >    datom->addProperty(atomData);
166  
167 < //----------------------------------------------------------------------------//
167 >    setVisited(datom);
168 >  }
169  
170 < void DefaultAtomVisitor::visit(Atom* atom){
171 <  AtomData* atomData;
172 <  AtomInfo* atomInfo;
182 <  double pos[3];
170 >  const std::string DefaultAtomVisitor::toString() {
171 >    char   buffer[65535];
172 >    std::string result;
173  
174 <  if(isVisited(atom))
175 <    return;
174 >    sprintf(buffer,
175 >            "------------------------------------------------------------------\n");
176 >    result += buffer;
177  
178 < atomInfo =new AtomInfo;
178 >    sprintf(buffer, "Visitor name: %s\n", visitorName.c_str());
179 >    result += buffer;
180  
181 <  atomData = new AtomData;
182 <  atomData->setID("ATOMDATA");
183 <
192 <  atom->getPos(pos);
193 <  atomInfo->AtomType = atom->getType();
194 <  atomInfo->pos[0] = pos[0];
195 <  atomInfo->pos[1] = pos[1];
196 <  atomInfo->pos[2] = pos[2];
197 <  atomInfo->dipole[0] = 0.0;
198 <  atomInfo->dipole[1] = 0.0;
199 <  atomInfo->dipole[2] = 0.0;
181 >    sprintf(buffer,
182 >            "Visitor Description: copy atom infomation into atom data\n");
183 >    result += buffer;
184  
185 +    sprintf(buffer,
186 +            "------------------------------------------------------------------\n");
187 +    result += buffer;
188  
189 <  atomData->addAtomInfo(atomInfo);
190 <  
191 <  atom->addProperty(atomData);
205 <
206 <  setVisited(atom);
207 < }
208 < void DefaultAtomVisitor::visit(DirectionalAtom* datom){
209 <  AtomData* atomData;
210 <  AtomInfo* atomInfo;
211 <  double pos[3];
212 <  double u[3];
213 <
214 <  if(isVisited(datom))
215 <    return;
216 <  
217 <  datom->getPos(pos);
218 <  datom->getU(u);
219 <
220 <  atomData = new AtomData;
221 <  atomData->setID("ATOMDATA");
222 <  atomInfo =new AtomInfo;
223 <  
224 <  atomInfo->AtomType = datom->getType();
225 <  atomInfo->pos[0] = pos[0];
226 <  atomInfo->pos[1] = pos[1];
227 <  atomInfo->pos[2] = pos[2];
228 <  atomInfo->dipole[0] = u[0];
229 <  atomInfo->dipole[1] = u[1];
230 <  atomInfo->dipole[2] = u[2];  
231 <
232 <  atomData->addAtomInfo(atomInfo);
233 <
234 <  datom->addProperty(atomData);
235 <
236 <  setVisited(datom);
237 < }
238 <
239 <
240 < const string DefaultAtomVisitor::toString(){
241 <  char buffer[65535];
242 <  string result;
243 <  
244 <  sprintf(buffer ,"------------------------------------------------------------------\n");
245 <  result += buffer;
246 <
247 <  sprintf(buffer ,"Visitor name: %s\n", visitorName.c_str());
248 <  result += buffer;
249 <
250 <  sprintf(buffer , "Visitor Description: copy atom infomation into atom data\n");
251 <  result += buffer;
252 <
253 <  sprintf(buffer ,"------------------------------------------------------------------\n");
254 <  result += buffer;
255 <
256 <  return result;
257 < }    
258 <
259 < }//namespace oopse
189 >    return result;
190 >  }
191 > } //namespace OpenMD

Comparing:
trunk/src/visitors/AtomVisitor.cpp (property svn:keywords), Revision 132 by tim, Thu Oct 21 16:22:01 2004 UTC vs.
branches/development/src/visitors/AtomVisitor.cpp (property svn:keywords), Revision 1665 by gezelter, Tue Nov 22 20:38:56 2011 UTC

# Line 0 | Line 1
1 + Author Id Revision Date

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines