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

Comparing:
trunk/src/visitors/AtomVisitor.cpp (property svn:keywords), Revision 2 by gezelter, Fri Sep 24 04:16:43 2004 UTC vs.
branches/development/src/visitors/AtomVisitor.cpp (property svn:keywords), Revision 1873 by gezelter, Fri May 10 16:09:34 2013 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines