ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/brains/DataStorage.cpp
(Generate patch)

Comparing trunk/src/brains/DataStorage.cpp (file contents):
Revision 963 by tim, Wed May 17 21:51:42 2006 UTC vs.
Revision 1782 by gezelter, Wed Aug 22 02:28:28 2012 UTC

# Line 6 | Line 6
6   * redistribute this software in source and binary code form, provided
7   * that the following conditions are met:
8   *
9 < * 1. Acknowledgement of the program authors must be made in any
10 < *    publication of scientific results based in part on use of the
11 < *    program.  An acceptable form of acknowledgement is citation of
12 < *    the article in which the program was described (Matthew
13 < *    A. Meineke, Charles F. Vardeman II, Teng Lin, Christopher
14 < *    J. Fennell and J. Daniel Gezelter, "OOPSE: An Object-Oriented
15 < *    Parallel Simulation Engine for Molecular Dynamics,"
16 < *    J. Comput. Chem. 26, pp. 252-271 (2005))
17 < *
18 < * 2. Redistributions of source code must retain the above copyright
9 > * 1. Redistributions of source code must retain the above copyright
10   *    notice, this list of conditions and the following disclaimer.
11   *
12 < * 3. Redistributions in binary form must reproduce the above copyright
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.
# Line 37 | Line 28
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   /**
# Line 48 | Line 49
49   */
50  
51   #include "brains/DataStorage.hpp"
52 + using namespace std;
53 + namespace OpenMD {
54  
52 namespace oopse {
53
55    DataStorage::DataStorage() : size_(0), storageLayout_(0){
56  
57    }
# Line 64 | Line 65 | namespace oopse {
65  
66      if (storageLayout_ & dslPosition && position.size() != size_) {
67        //error
68 <      std::cerr << "size does not match"<< std::endl;
68 >      cerr << "size does not match"<< endl;
69      }
70  
71      if (storageLayout_ & dslVelocity && velocity.size() != size_) {
72        //error
73 <      std::cerr << "size does not match"<< std::endl;        
73 >      cerr << "size does not match"<< endl;        
74      }
75  
76      if (storageLayout_ & dslAmat && aMat.size() != size_) {
77        //error
78 <      std::cerr << "size does not match"<< std::endl;        
78 >      cerr << "size does not match"<< endl;        
79      }
80  
81      if (storageLayout_ & dslAngularMomentum && angularMomentum.size() != size_) {
82        //error
83 <      std::cerr << "size does not match"<< std::endl;        
83 >      cerr << "size does not match"<< endl;        
84      }
85  
86      if (storageLayout_ & dslElectroFrame && electroFrame.size() != size_) {
87        //error
88 <      std::cerr << "size does not match"<< std::endl;        
88 >      cerr << "size does not match"<< endl;        
89      }
90  
91 <    if (storageLayout_ & dslZAngle && zAngle.size() != size_) {
91 >    if (storageLayout_ & dslForce && force.size() != size_) {
92        //error
93 <      std::cerr << "size does not match"<< std::endl;        
93 >      cerr << "size does not match"<< endl;        
94      }
95  
96 <    if (storageLayout_ & dslForce && force.size() != size_) {
96 >    if (storageLayout_ & dslTorque && torque.size() != size_) {
97        //error
98 <      std::cerr << "size does not match"<< std::endl;        
98 >      cerr << "size does not match"<< endl;        
99      }
100  
101 <    if (storageLayout_ & dslTorque && torque.size() != size_) {
101 >    if (storageLayout_ & dslParticlePot && particlePot.size() != size_) {
102        //error
103 <      std::cerr << "size does not match"<< std::endl;        
103 >      cerr << "size does not match"<< endl;        
104      }
105  
106 +    if (storageLayout_ & dslDensity && density.size() != size_) {
107 +      //error
108 +      cerr << "size does not match"<< endl;        
109 +    }
110 +
111 +    if (storageLayout_ & dslFunctional && functional.size() != size_) {
112 +      //error
113 +      cerr << "size does not match"<< endl;        
114 +    }
115 +
116 +    if (storageLayout_ & dslFunctionalDerivative && functionalDerivative.size() != size_) {
117 +      //error
118 +      cerr << "size does not match"<< endl;        
119 +    }
120 +
121 +    if (storageLayout_ & dslElectricField && electricField.size() != size_) {
122 +      //error
123 +      cerr << "size does not match"<< endl;        
124 +    }
125 +
126 +    if (storageLayout_ & dslSkippedCharge && skippedCharge.size() != size_) {
127 +      //error
128 +      cerr << "size does not match"<< endl;        
129 +    }
130 +
131 +    if (storageLayout_ & dslFlucQPosition && flucQPos.size() != size_) {
132 +      //error
133 +      cerr << "size does not match"<< endl;        
134 +    }
135 +
136 +    if (storageLayout_ & dslFlucQVelocity && flucQVel.size() != size_) {
137 +      //error
138 +      cerr << "size does not match"<< endl;        
139 +    }
140 +
141 +    if (storageLayout_ & dslFlucQForce && flucQFrc.size() != size_) {
142 +      //error
143 +      cerr << "size does not match"<< endl;        
144 +    }
145 +    
146      return size_;
147  
148    }
# Line 128 | Line 169 | namespace oopse {
169        internalResize(electroFrame, newSize);
170      }
171      
131    if (storageLayout_ & dslZAngle) {
132      internalResize(zAngle, newSize);
133    }
134
172      if (storageLayout_ & dslForce) {
173        internalResize(force, newSize);
174      }
# Line 140 | Line 177 | namespace oopse {
177        internalResize(torque, newSize);
178      }
179  
180 +    if (storageLayout_ & dslParticlePot) {
181 +      internalResize(particlePot, newSize);
182 +    }
183 +
184 +    if (storageLayout_ & dslDensity) {
185 +      internalResize(density, newSize);
186 +    }
187 +
188 +    if (storageLayout_ & dslFunctional) {
189 +      internalResize(functional, newSize);
190 +    }
191 +
192 +    if (storageLayout_ & dslFunctionalDerivative) {
193 +      internalResize(functionalDerivative, newSize);
194 +    }
195 +
196 +    if (storageLayout_ & dslElectricField) {
197 +      internalResize(electricField, newSize);
198 +    }
199 +
200 +    if (storageLayout_ & dslSkippedCharge) {
201 +      internalResize(skippedCharge, newSize);
202 +    }
203 +
204 +    if (storageLayout_ & dslFlucQPosition) {
205 +      internalResize(flucQPos, newSize);
206 +    }
207 +
208 +    if (storageLayout_ & dslFlucQVelocity) {
209 +      internalResize(flucQVel, newSize);
210 +    }
211 +
212 +    if (storageLayout_ & dslFlucQForce) {
213 +      internalResize(flucQFrc, newSize);
214 +    }
215 +
216      size_ = newSize;
217    }
218  
# Line 164 | Line 237 | namespace oopse {
237        electroFrame.reserve(size);
238      }
239      
167    if (storageLayout_ & dslZAngle) {
168      zAngle.reserve(size);
169    }
170
240      if (storageLayout_ & dslForce) {
241        force.reserve(size);
242      }
243  
244      if (storageLayout_ & dslTorque) {
245        torque.reserve(size);
246 +    }
247 +    
248 +    if (storageLayout_ & dslParticlePot) {
249 +      particlePot.reserve(size);
250 +    }
251 +
252 +    if (storageLayout_ & dslDensity) {
253 +      density.reserve(size);
254 +    }
255 +
256 +    if (storageLayout_ & dslFunctional) {
257 +      functional.reserve(size);
258      }
259  
260 +    if (storageLayout_ & dslFunctionalDerivative) {
261 +      functionalDerivative.reserve(size);
262 +    }
263 +
264 +    if (storageLayout_ & dslElectricField) {
265 +      electricField.reserve(size);
266 +    }
267 +
268 +    if (storageLayout_ & dslSkippedCharge) {
269 +      skippedCharge.reserve(size);
270 +    }
271 +
272 +    if (storageLayout_ & dslFlucQPosition) {
273 +      flucQPos.reserve(size);
274 +    }
275 +
276 +    if (storageLayout_ & dslFlucQVelocity) {
277 +      flucQVel.reserve(size);
278 +    }
279 +
280 +    if (storageLayout_ & dslFlucQForce) {
281 +      flucQFrc.reserve(size);
282 +    }
283    }
284  
285    void DataStorage::copy(int source, int num, int target) {
# Line 203 | Line 307 | namespace oopse {
307        internalCopy(electroFrame, source, num, target);
308      }
309      
206    if (storageLayout_ & dslZAngle) {
207      internalCopy(zAngle, source, num, target);
208    }
209
310      if (storageLayout_ & dslForce) {
311        internalCopy(force, source, num, target);
312      }
# Line 214 | Line 314 | namespace oopse {
314      if (storageLayout_ & dslTorque) {
315        internalCopy(torque, source, num, target);
316      }
217    
317  
318 +    if (storageLayout_ & dslParticlePot) {
319 +      internalCopy(particlePot, source, num, target);
320 +    }
321 +
322 +    if (storageLayout_ & dslDensity) {
323 +      internalCopy(density, source, num, target);
324 +    }
325 +
326 +    if (storageLayout_ & dslFunctional) {
327 +      internalCopy(functional, source, num, target);
328 +    }
329 +
330 +    if (storageLayout_ & dslFunctionalDerivative) {
331 +      internalCopy(functionalDerivative, source, num, target);
332 +    }
333 +
334 +    if (storageLayout_ & dslElectricField) {
335 +      internalCopy(electricField, source, num, target);
336 +    }
337 +
338 +    if (storageLayout_ & dslSkippedCharge) {
339 +      internalCopy(skippedCharge, source, num, target);
340 +    }
341 +
342 +    if (storageLayout_ & dslFlucQPosition) {
343 +      internalCopy(flucQPos, source, num, target);
344 +    }
345 +
346 +    if (storageLayout_ & dslFlucQVelocity) {
347 +      internalCopy(flucQVel, source, num, target);
348 +    }
349 +    if (storageLayout_ & dslFlucQForce) {
350 +      internalCopy(flucQFrc, source, num, target);
351 +    }
352    }
353  
354    int DataStorage::getStorageLayout() {
# Line 250 | Line 383 | namespace oopse {
383        return internalGetArrayPointer(electroFrame);
384        break;
385              
253    case dslZAngle:
254      return internalGetArrayPointer(zAngle);
255      break;
256
386      case dslForce:
387        return internalGetArrayPointer(force);
388        break;            
389  
390      case dslTorque:
391        return internalGetArrayPointer(torque);
392 <      break;  
393 <            
392 >      break;
393 >
394 >    case dslParticlePot:
395 >      return internalGetArrayPointer(particlePot);
396 >      break;
397 >
398 >    case dslDensity:
399 >      return internalGetArrayPointer(density);
400 >      break;
401 >
402 >    case dslFunctional:
403 >      return internalGetArrayPointer(functional);
404 >      break;
405 >
406 >    case dslFunctionalDerivative:
407 >      return internalGetArrayPointer(functionalDerivative);
408 >      break;
409 >
410 >    case dslElectricField:
411 >      return internalGetArrayPointer(electricField);
412 >      break;
413 >
414 >    case dslSkippedCharge:
415 >      return internalGetArrayPointer(skippedCharge);
416 >      break;
417 >
418 >    case dslFlucQPosition:
419 >      return internalGetArrayPointer(flucQPos);
420 >      break;
421 >
422 >    case dslFlucQVelocity:
423 >      return internalGetArrayPointer(flucQVel);
424 >      break;
425 >          
426 >    case dslFlucQForce:
427 >      return internalGetArrayPointer(flucQFrc);
428 >      break;
429 >          
430      default:
431        //error message
432        return NULL;
# Line 338 | Line 503 | namespace oopse {
503        bytes += sizeof(Vector3d);
504      }
505      if (layout & dslAmat) {
506 <      bytes += sizeof(Mat3x3d);    
506 >      bytes += sizeof(RotMat3x3d);    
507      }
508      if (layout & dslAngularMomentum) {
509        bytes += sizeof(Vector3d);
# Line 346 | Line 511 | namespace oopse {
511      if (layout & dslElectroFrame) {
512        bytes += sizeof(Mat3x3d);
513      }
349    if (layout & dslZAngle) {
350      bytes += sizeof(Vector3d);
351    }
514      if (layout & dslForce) {
515        bytes += sizeof(Vector3d);
516      }
517      if (layout & dslTorque) {
518        bytes += sizeof(Vector3d);
519      }
520 +    if (layout & dslParticlePot) {
521 +      bytes += sizeof(RealType);
522 +    }
523 +    if (layout & dslDensity) {
524 +      bytes += sizeof(RealType);
525 +    }
526 +    if (layout & dslFunctional) {
527 +      bytes += sizeof(RealType);
528 +    }
529 +    if (layout & dslFunctionalDerivative) {
530 +      bytes += sizeof(RealType);
531 +    }
532 +    if (layout & dslElectricField) {
533 +      bytes += sizeof(Vector3d);
534 +    }
535 +    if (layout & dslSkippedCharge) {
536 +      bytes += sizeof(RealType);
537 +    }
538 +    if (layout & dslFlucQPosition) {
539 +      bytes += sizeof(RealType);
540 +    }
541 +    if (layout & dslFlucQVelocity) {
542 +      bytes += sizeof(RealType);
543 +    }
544 +    if (layout & dslFlucQForce) {
545 +      bytes += sizeof(RealType);
546 +    }
547 +
548      return bytes;
549    }
550  

Comparing trunk/src/brains/DataStorage.cpp (property svn:keywords):
Revision 963 by tim, Wed May 17 21:51:42 2006 UTC vs.
Revision 1782 by gezelter, Wed Aug 22 02:28:28 2012 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines