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

Comparing trunk/src/io/DumpWriter.cpp (file contents):
Revision 1025 by gezelter, Wed Aug 30 20:33:44 2006 UTC vs.
Revision 1564 by chuckv, Wed May 18 19:28:52 2011 UTC

# Line 1 | Line 1
1   /*
2 < * Copyright (c) 2005 The University of Notre Dame. All Rights Reserved.
2 > * Copyright (c) 2009 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. 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]  Vardeman & Gezelter, in progress (2009).                        
40   */
41  
42   #include "io/DumpWriter.hpp"
# Line 46 | Line 46
46   #include "io/gzstream.hpp"
47   #include "io/Globals.hpp"
48  
49 +
50   #ifdef IS_MPI
51   #include <mpi.h>
52   #endif //is_mpi
53  
54 < namespace oopse {
54 > using namespace std;
55 > namespace OpenMD {
56  
57    DumpWriter::DumpWriter(SimInfo* info)
58      : info_(info), filename_(info->getDumpFileName()), eorFilename_(info->getFinalConfigFileName()){
# Line 194 | Line 196 | namespace oopse {
196      os << "    <FrameData>\n";
197  
198      RealType currentTime = s->getTime();
199 +
200 +    if (isinf(currentTime) || isnan(currentTime)) {      
201 +      sprintf( painCave.errMsg,
202 +               "DumpWriter detected a numerical error writing the time");      
203 +      painCave.isFatal = 1;
204 +      simError();
205 +    }
206 +    
207      sprintf(buffer, "        Time: %.10g\n", currentTime);
208      os << buffer;
209  
210      Mat3x3d hmat;
211      hmat = s->getHmat();
212 +
213 +    for (unsigned int i = 0; i < 3; i++) {
214 +      for (unsigned int j = 0; j < 3; j++) {
215 +        if (isinf(hmat(i,j)) || isnan(hmat(i,j))) {      
216 +          sprintf( painCave.errMsg,
217 +                   "DumpWriter detected a numerical error writing the box");
218 +          painCave.isFatal = 1;
219 +          simError();
220 +        }        
221 +      }
222 +    }
223 +    
224      sprintf(buffer, "        Hmat: {{ %.10g, %.10g, %.10g }, { %.10g, %.10g, %.10g }, { %.10g, %.10g, %.10g }}\n",
225              hmat(0, 0), hmat(1, 0), hmat(2, 0),
226              hmat(0, 1), hmat(1, 1), hmat(2, 1),
# Line 207 | Line 229 | namespace oopse {
229  
230      RealType chi = s->getChi();
231      RealType integralOfChiDt = s->getIntegralOfChiDt();
232 +    if (isinf(chi) || isnan(chi) ||
233 +        isinf(integralOfChiDt) || isnan(integralOfChiDt)) {      
234 +      sprintf( painCave.errMsg,
235 +               "DumpWriter detected a numerical error writing the thermostat");
236 +      painCave.isFatal = 1;
237 +      simError();
238 +    }
239      sprintf(buffer, "  Thermostat: %.10g , %.10g\n", chi, integralOfChiDt);
240      os << buffer;
241  
242      Mat3x3d eta;
243      eta = s->getEta();
244 +
245 +    for (unsigned int i = 0; i < 3; i++) {
246 +      for (unsigned int j = 0; j < 3; j++) {
247 +        if (isinf(eta(i,j)) || isnan(eta(i,j))) {      
248 +          sprintf( painCave.errMsg,
249 +                   "DumpWriter detected a numerical error writing the barostat");
250 +          painCave.isFatal = 1;
251 +          simError();
252 +        }        
253 +      }
254 +    }
255 +
256      sprintf(buffer, "    Barostat: {{ %.10g, %.10g, %.10g }, { %.10g, %.10g, %.10g }, { %.10g, %.10g, %.10g }}\n",
257              eta(0, 0), eta(1, 0), eta(2, 0),
258              eta(0, 1), eta(1, 1), eta(2, 1),
# Line 240 | Line 281 | namespace oopse {
281      os << "    <StuntDoubles>\n";
282      for (mol = info_->beginMolecule(mi); mol != NULL; mol = info_->nextMolecule(mi)) {
283  
284 <      for (integrableObject = mol->beginIntegrableObject(ii); integrableObject != NULL;
284 >      
285 >      for (integrableObject = mol->beginIntegrableObject(ii); integrableObject != NULL;  
286             integrableObject = mol->nextIntegrableObject(ii)) {  
287 <        os << prepareDumpLine(integrableObject);
288 <
287 >          os << prepareDumpLine(integrableObject);
288 >          
289        }
290      }    
291      os << "    </StuntDoubles>\n";
292 <
292 >    
293      os << "  </Snapshot>\n";
294  
295      os.flush();
# Line 255 | Line 297 | namespace oopse {
297      //every node prepares the dump lines for integrable objects belong to itself
298      std::string buffer;
299      for (mol = info_->beginMolecule(mi); mol != NULL; mol = info_->nextMolecule(mi)) {
300 <      
300 >
301 >
302        for (integrableObject = mol->beginIntegrableObject(ii); integrableObject != NULL;
303             integrableObject = mol->nextIntegrableObject(ii)) {  
304 <        buffer += prepareDumpLine(integrableObject);
304 >          buffer += prepareDumpLine(integrableObject);
305        }
306      }
307      
308      const int masterNode = 0;
309 <
309 >    int nProc;
310 >    MPI_Comm_size(MPI_COMM_WORLD, &nProc);
311      if (worldRank == masterNode) {      
312        os << "  <Snapshot>\n";  
313        writeFrameProperties(os, info_->getSnapshotManager()->getCurrentSnapshot());
# Line 271 | Line 315 | namespace oopse {
315          
316        os << buffer;
317  
318 <      int nProc;
275 <      MPI_Comm_size(MPI_COMM_WORLD, &nProc);
318 >    
319        for (int i = 1; i < nProc; ++i) {
320  
321          // receive the length of the string buffer that was
322          // prepared by processor i
323 <
323 >      
324 >        MPI_Bcast(&i, 1, MPI_INT,masterNode,MPI_COMM_WORLD);
325          int recvLength;
326          MPI_Recv(&recvLength, 1, MPI_INT, i, 0, MPI_COMM_WORLD, &istatus);
327          char* recvBuffer = new char[recvLength];
# Line 285 | Line 329 | namespace oopse {
329          } else {
330            MPI_Recv(recvBuffer, recvLength, MPI_CHAR, i, 0, MPI_COMM_WORLD, &istatus);
331            os << recvBuffer;
332 <          delete recvBuffer;
332 >          delete [] recvBuffer;
333          }
334        }
335        os << "    </StuntDoubles>\n";
# Line 294 | Line 338 | namespace oopse {
338        os.flush();
339      } else {
340        int sendBufferLength = buffer.size() + 1;
341 <      MPI_Send(&sendBufferLength, 1, MPI_INT, masterNode, 0, MPI_COMM_WORLD);
342 <      MPI_Send((void *)buffer.c_str(), sendBufferLength, MPI_CHAR, masterNode, 0, MPI_COMM_WORLD);
341 >      int myturn = 0;
342 >      for (int i = 1; i < nProc; ++i){
343 >        MPI_Bcast(&myturn,1, MPI_INT,masterNode,MPI_COMM_WORLD);
344 >        if (myturn == worldRank){
345 >          MPI_Send(&sendBufferLength, 1, MPI_INT, masterNode, 0, MPI_COMM_WORLD);
346 >          MPI_Send((void *)buffer.c_str(), sendBufferLength, MPI_CHAR, masterNode, 0, MPI_COMM_WORLD);
347 >        }
348 >      }
349      }
350  
351   #endif // is_mpi
# Line 312 | Line 362 | namespace oopse {
362      Vector3d pos;
363      Vector3d vel;
364      pos = integrableObject->getPos();
365 +
366 +    if (isinf(pos[0]) || isnan(pos[0]) ||
367 +        isinf(pos[1]) || isnan(pos[1]) ||
368 +        isinf(pos[2]) || isnan(pos[2]) ) {      
369 +      sprintf( painCave.errMsg,
370 +               "DumpWriter detected a numerical error writing the position"
371 +               " for object %d", index);      
372 +      painCave.isFatal = 1;
373 +      simError();
374 +    }
375 +
376      vel = integrableObject->getVel();          
377 +
378 +    if (isinf(vel[0]) || isnan(vel[0]) ||
379 +        isinf(vel[1]) || isnan(vel[1]) ||
380 +        isinf(vel[2]) || isnan(vel[2]) ) {      
381 +      sprintf( painCave.errMsg,
382 +               "DumpWriter detected a numerical error writing the velocity"
383 +               " for object %d", index);      
384 +      painCave.isFatal = 1;
385 +      simError();
386 +    }
387 +
388      sprintf(tempBuffer, "%18.10g %18.10g %18.10g %13e %13e %13e",
389              pos[0], pos[1], pos[2],
390              vel[0], vel[1], vel[2]);                    
# Line 323 | Line 395 | namespace oopse {
395        Quat4d q;
396        Vector3d ji;
397        q = integrableObject->getQ();
398 +
399 +      if (isinf(q[0]) || isnan(q[0]) ||
400 +          isinf(q[1]) || isnan(q[1]) ||
401 +          isinf(q[2]) || isnan(q[2]) ||
402 +          isinf(q[3]) || isnan(q[3]) ) {      
403 +        sprintf( painCave.errMsg,
404 +                 "DumpWriter detected a numerical error writing the quaternion"
405 +                 " for object %d", index);      
406 +        painCave.isFatal = 1;
407 +        simError();
408 +      }
409 +
410        ji = integrableObject->getJ();
411 +
412 +      if (isinf(ji[0]) || isnan(ji[0]) ||
413 +          isinf(ji[1]) || isnan(ji[1]) ||
414 +          isinf(ji[2]) || isnan(ji[2]) ) {      
415 +        sprintf( painCave.errMsg,
416 +                 "DumpWriter detected a numerical error writing the angular"
417 +                 " momentum for object %d", index);      
418 +        painCave.isFatal = 1;
419 +        simError();
420 +      }
421 +
422        sprintf(tempBuffer, " %13e %13e %13e %13e %13e %13e %13e",
423                q[0], q[1], q[2], q[3],
424                ji[0], ji[1], ji[2]);
# Line 331 | Line 426 | namespace oopse {
426      }
427  
428      if (needForceVector_) {
429 <      type += "ft";
429 >      type += "f";
430        Vector3d frc;
431 <      Vector3d trq;
431 >
432        frc = integrableObject->getFrc();
433 <      trq = integrableObject->getTrq();
434 <              
435 <      sprintf(tempBuffer, " %13e %13e %13e %13e %13e %13e",
436 <              frc[0], frc[1], frc[2],
437 <              trq[0], trq[1], trq[2]);
433 >
434 >      if (isinf(frc[0]) || isnan(frc[0]) ||
435 >          isinf(frc[1]) || isnan(frc[1]) ||
436 >          isinf(frc[2]) || isnan(frc[2]) ) {      
437 >        sprintf( painCave.errMsg,
438 >                 "DumpWriter detected a numerical error writing the force"
439 >                 " for object %d", index);      
440 >        painCave.isFatal = 1;
441 >        simError();
442 >      }
443 >      sprintf(tempBuffer, " %13e %13e %13e",
444 >              frc[0], frc[1], frc[2]);
445        line += tempBuffer;
446 +      
447 +      if (integrableObject->isDirectional()) {
448 +        type += "t";
449 +        Vector3d trq;
450 +        
451 +        trq = integrableObject->getTrq();
452 +        
453 +        if (isinf(trq[0]) || isnan(trq[0]) ||
454 +            isinf(trq[1]) || isnan(trq[1]) ||
455 +            isinf(trq[2]) || isnan(trq[2]) ) {      
456 +          sprintf( painCave.errMsg,
457 +                   "DumpWriter detected a numerical error writing the torque"
458 +                   " for object %d", index);      
459 +          painCave.isFatal = 1;
460 +          simError();
461 +        }
462 +        
463 +        sprintf(tempBuffer, " %13e %13e %13e",
464 +                trq[0], trq[1], trq[2]);
465 +        line += tempBuffer;
466 +      }      
467      }
468 <        
468 >    
469      sprintf(tempBuffer, "%10d %7s %s\n", index, type.c_str(), line.c_str());
470      return std::string(tempBuffer);
471    }
# Line 424 | Line 547 | namespace oopse {
547      newOStream = new std::ofstream(filename.c_str());
548   #endif
549      //write out MetaData first
550 <    (*newOStream) << "<OOPSE version=4>" << std::endl;
550 >    (*newOStream) << "<OpenMD version=1>" << std::endl;
551      (*newOStream) << "  <MetaData>" << std::endl;
552      (*newOStream) << info_->getRawMetaData();
553      (*newOStream) << "  </MetaData>" << std::endl;
# Line 433 | Line 556 | namespace oopse {
556  
557    void DumpWriter::writeClosing(std::ostream& os) {
558  
559 <    os << "</OOPSE>\n";
559 >    os << "</OpenMD>\n";
560      os.flush();
561    }
562  
563 < }//end namespace oopse
563 > }//end namespace OpenMD

Comparing trunk/src/io/DumpWriter.cpp (property svn:keywords):
Revision 1025 by gezelter, Wed Aug 30 20:33:44 2006 UTC vs.
Revision 1564 by chuckv, Wed May 18 19:28:52 2011 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines