| 1 | 
gezelter | 
507 | 
/* | 
| 2 | 
gezelter | 
246 | 
 * 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 | 
gezelter | 
1390 | 
 * 1. Redistributions of source code must retain the above copyright | 
| 10 | 
gezelter | 
246 | 
 *    notice, this list of conditions and the following disclaimer. | 
| 11 | 
  | 
  | 
 * | 
| 12 | 
gezelter | 
1390 | 
 * 2. Redistributions in binary form must reproduce the above copyright | 
| 13 | 
gezelter | 
246 | 
 *    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 | 
gezelter | 
1390 | 
 * | 
| 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 | 
gezelter | 
246 | 
 */ | 
| 41 | 
  | 
  | 
  | 
| 42 | 
gezelter | 
2 | 
#include <cstring> | 
| 43 | 
tim | 
3 | 
#include "visitors/AtomVisitor.hpp" | 
| 44 | 
  | 
  | 
#include "primitives/DirectionalAtom.hpp" | 
| 45 | 
  | 
  | 
#include "primitives/RigidBody.hpp" | 
| 46 | 
gezelter | 
2 | 
 | 
| 47 | 
gezelter | 
1390 | 
namespace OpenMD { | 
| 48 | 
gezelter | 
507 | 
  void BaseAtomVisitor::visit(RigidBody *rb) { | 
| 49 | 
  | 
  | 
    //vector<Atom*> myAtoms; | 
| 50 | 
  | 
  | 
    //vector<Atom*>::iterator atomIter; | 
| 51 | 
tim | 
132 | 
 | 
| 52 | 
gezelter | 
507 | 
    //myAtoms = rb->getAtoms(); | 
| 53 | 
gezelter | 
2 | 
 | 
| 54 | 
gezelter | 
507 | 
    //for(atomIter = myAtoms.begin(); atomIter != myAtoms.end(); ++atomIter) | 
| 55 | 
  | 
  | 
    //  (*atomIter)->accept(this); | 
| 56 | 
  | 
  | 
  } | 
| 57 | 
gezelter | 
2 | 
 | 
| 58 | 
gezelter | 
507 | 
  void BaseAtomVisitor::setVisited(Atom *atom) { | 
| 59 | 
gezelter | 
246 | 
    GenericData *data; | 
| 60 | 
  | 
  | 
    data = atom->getPropertyByName("VISITED"); | 
| 61 | 
gezelter | 
2 | 
 | 
| 62 | 
gezelter | 
246 | 
    //if visited property is not existed, add it as new property | 
| 63 | 
  | 
  | 
    if (data == NULL) { | 
| 64 | 
gezelter | 
507 | 
      data = new GenericData(); | 
| 65 | 
  | 
  | 
      data->setID("VISITED"); | 
| 66 | 
  | 
  | 
      atom->addProperty(data); | 
| 67 | 
gezelter | 
246 | 
    } | 
| 68 | 
gezelter | 
507 | 
  } | 
| 69 | 
gezelter | 
2 | 
 | 
| 70 | 
gezelter | 
507 | 
  bool BaseAtomVisitor::isVisited(Atom *atom) { | 
| 71 | 
gezelter | 
246 | 
    GenericData *data; | 
| 72 | 
  | 
  | 
    data = atom->getPropertyByName("VISITED"); | 
| 73 | 
  | 
  | 
    return data == NULL ? false : true; | 
| 74 | 
gezelter | 
507 | 
  } | 
| 75 | 
gezelter | 
2 | 
 | 
| 76 | 
gezelter | 
1455 | 
  //------------------------------------------------------------------------// | 
| 77 | 
  | 
  | 
         | 
| 78 | 
gezelter | 
507 | 
  void DefaultAtomVisitor::visit(Atom *atom) { | 
| 79 | 
gezelter | 
246 | 
    AtomData *atomData; | 
| 80 | 
  | 
  | 
    AtomInfo *atomInfo; | 
| 81 | 
  | 
  | 
    Vector3d  pos; | 
| 82 | 
gezelter | 
1456 | 
    Vector3d  vel; | 
| 83 | 
  | 
  | 
    Vector3d  frc; | 
| 84 | 
  | 
  | 
    Vector3d  u; | 
| 85 | 
  | 
  | 
    RealType  c; | 
| 86 | 
  | 
  | 
 | 
| 87 | 
gezelter | 
246 | 
    if (isVisited(atom)) | 
| 88 | 
gezelter | 
507 | 
      return; | 
| 89 | 
gezelter | 
1455 | 
     | 
| 90 | 
gezelter | 
246 | 
    atomInfo = new AtomInfo; | 
| 91 | 
gezelter | 
1455 | 
     | 
| 92 | 
gezelter | 
246 | 
    atomData = new AtomData; | 
| 93 | 
  | 
  | 
    atomData->setID("ATOMDATA"); | 
| 94 | 
gezelter | 
1455 | 
     | 
| 95 | 
gezelter | 
246 | 
    pos = atom->getPos(); | 
| 96 | 
gezelter | 
1456 | 
    vel = atom->getVel(); | 
| 97 | 
  | 
  | 
    frc = atom->getFrc(); | 
| 98 | 
gezelter | 
407 | 
    atomInfo->atomTypeName = atom->getType(); | 
| 99 | 
gezelter | 
246 | 
    atomInfo->pos[0] = pos[0]; | 
| 100 | 
  | 
  | 
    atomInfo->pos[1] = pos[1]; | 
| 101 | 
  | 
  | 
    atomInfo->pos[2] = pos[2]; | 
| 102 | 
gezelter | 
1456 | 
    atomInfo->vel[0] = vel[0]; | 
| 103 | 
  | 
  | 
    atomInfo->vel[1] = vel[1]; | 
| 104 | 
  | 
  | 
    atomInfo->vel[2] = vel[2]; | 
| 105 | 
  | 
  | 
    atomInfo->hasVelocity = true; | 
| 106 | 
  | 
  | 
    atomInfo->frc[0] = frc[0]; | 
| 107 | 
  | 
  | 
    atomInfo->frc[1] = frc[1]; | 
| 108 | 
  | 
  | 
    atomInfo->frc[2] = frc[2]; | 
| 109 | 
  | 
  | 
    atomInfo->hasForce = true; | 
| 110 | 
  | 
  | 
    atomInfo->vec[0] = 0.0; | 
| 111 | 
  | 
  | 
    atomInfo->vec[1] = 0.0; | 
| 112 | 
  | 
  | 
    atomInfo->vec[2] = 0.0; | 
| 113 | 
gezelter | 
1455 | 
     | 
| 114 | 
gezelter | 
246 | 
    atomData->addAtomInfo(atomInfo); | 
| 115 | 
gezelter | 
1455 | 
     | 
| 116 | 
gezelter | 
246 | 
    atom->addProperty(atomData); | 
| 117 | 
gezelter | 
1455 | 
     | 
| 118 | 
gezelter | 
246 | 
    setVisited(atom); | 
| 119 | 
gezelter | 
507 | 
  } | 
| 120 | 
gezelter | 
1455 | 
   | 
| 121 | 
gezelter | 
507 | 
  void DefaultAtomVisitor::visit(DirectionalAtom *datom) { | 
| 122 | 
gezelter | 
246 | 
    AtomData *atomData; | 
| 123 | 
  | 
  | 
    AtomInfo *atomInfo; | 
| 124 | 
  | 
  | 
    Vector3d  pos; | 
| 125 | 
gezelter | 
1456 | 
    Vector3d  vel; | 
| 126 | 
  | 
  | 
    Vector3d  frc; | 
| 127 | 
gezelter | 
246 | 
    Vector3d  u; | 
| 128 | 
gezelter | 
1456 | 
    RealType  c; | 
| 129 | 
gezelter | 
2 | 
 | 
| 130 | 
gezelter | 
246 | 
    if (isVisited(datom)) | 
| 131 | 
gezelter | 
507 | 
      return; | 
| 132 | 
gezelter | 
1456 | 
     | 
| 133 | 
gezelter | 
246 | 
    pos = datom->getPos(); | 
| 134 | 
gezelter | 
1456 | 
    vel = datom->getVel(); | 
| 135 | 
  | 
  | 
    frc = datom->getFrc(); | 
| 136 | 
tim | 
989 | 
    if (datom->getAtomType()->isGayBerne()) { | 
| 137 | 
  | 
  | 
        u = datom->getA().transpose()*V3Z;          | 
| 138 | 
  | 
  | 
    } else if (datom->getAtomType()->isMultipole()) { | 
| 139 | 
  | 
  | 
        u = datom->getElectroFrame().getColumn(2); | 
| 140 | 
  | 
  | 
    } | 
| 141 | 
gezelter | 
246 | 
    atomData = new AtomData; | 
| 142 | 
  | 
  | 
    atomData->setID("ATOMDATA"); | 
| 143 | 
  | 
  | 
    atomInfo = new AtomInfo; | 
| 144 | 
gezelter | 
2 | 
 | 
| 145 | 
gezelter | 
407 | 
    atomInfo->atomTypeName = datom->getType(); | 
| 146 | 
gezelter | 
246 | 
    atomInfo->pos[0] = pos[0]; | 
| 147 | 
  | 
  | 
    atomInfo->pos[1] = pos[1]; | 
| 148 | 
  | 
  | 
    atomInfo->pos[2] = pos[2]; | 
| 149 | 
gezelter | 
1456 | 
    atomInfo->vel[0] = vel[0]; | 
| 150 | 
  | 
  | 
    atomInfo->vel[1] = vel[1]; | 
| 151 | 
  | 
  | 
    atomInfo->vel[2] = vel[2]; | 
| 152 | 
  | 
  | 
    atomInfo->hasVelocity = true; | 
| 153 | 
  | 
  | 
    atomInfo->frc[0] = frc[0]; | 
| 154 | 
  | 
  | 
    atomInfo->frc[1] = frc[1]; | 
| 155 | 
  | 
  | 
    atomInfo->frc[2] = frc[2]; | 
| 156 | 
  | 
  | 
    atomInfo->hasForce = true; | 
| 157 | 
  | 
  | 
    atomInfo->vec[0] = u[0]; | 
| 158 | 
  | 
  | 
    atomInfo->vec[1] = u[1]; | 
| 159 | 
  | 
  | 
    atomInfo->vec[2] = u[2]; | 
| 160 | 
  | 
  | 
    atomInfo->hasVector = true; | 
| 161 | 
gezelter | 
246 | 
 | 
| 162 | 
  | 
  | 
    atomData->addAtomInfo(atomInfo); | 
| 163 | 
  | 
  | 
 | 
| 164 | 
  | 
  | 
    datom->addProperty(atomData); | 
| 165 | 
  | 
  | 
 | 
| 166 | 
  | 
  | 
    setVisited(datom); | 
| 167 | 
gezelter | 
507 | 
  } | 
| 168 | 
gezelter | 
2 | 
 | 
| 169 | 
gezelter | 
507 | 
  const std::string DefaultAtomVisitor::toString() { | 
| 170 | 
gezelter | 
246 | 
    char   buffer[65535]; | 
| 171 | 
  | 
  | 
    std::string result; | 
| 172 | 
gezelter | 
2 | 
 | 
| 173 | 
gezelter | 
246 | 
    sprintf(buffer, | 
| 174 | 
  | 
  | 
            "------------------------------------------------------------------\n"); | 
| 175 | 
  | 
  | 
    result += buffer; | 
| 176 | 
gezelter | 
2 | 
 | 
| 177 | 
gezelter | 
246 | 
    sprintf(buffer, "Visitor name: %s\n", visitorName.c_str()); | 
| 178 | 
  | 
  | 
    result += buffer; | 
| 179 | 
gezelter | 
2 | 
 | 
| 180 | 
gezelter | 
246 | 
    sprintf(buffer, | 
| 181 | 
  | 
  | 
            "Visitor Description: copy atom infomation into atom data\n"); | 
| 182 | 
  | 
  | 
    result += buffer; | 
| 183 | 
gezelter | 
2 | 
 | 
| 184 | 
gezelter | 
246 | 
    sprintf(buffer, | 
| 185 | 
  | 
  | 
            "------------------------------------------------------------------\n"); | 
| 186 | 
  | 
  | 
    result += buffer; | 
| 187 | 
gezelter | 
2 | 
 | 
| 188 | 
gezelter | 
246 | 
    return result; | 
| 189 | 
gezelter | 
507 | 
  } | 
| 190 | 
gezelter | 
1390 | 
} //namespace OpenMD |