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

Comparing branches/development/src/brains/ForceManager.cpp (file contents):
Revision 1593 by gezelter, Fri Jul 15 21:35:14 2011 UTC vs.
Revision 1733 by jmichalk, Tue Jun 5 17:48:40 2012 UTC

# Line 36 | Line 36
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).                        
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 108 | Line 109 | namespace OpenMD {
109      
110      Globals* simParams_ = info_->getSimParams();
111      ForceFieldOptions& forceFieldOptions_ = forceField_->getForceFieldOptions();
112 +    int mdFileVersion;
113      
114 +    if (simParams_->haveMDfileVersion())
115 +      mdFileVersion = simParams_->getMDfileVersion();
116 +    else
117 +      mdFileVersion = 0;
118 +  
119      if (simParams_->haveCutoffRadius()) {
120        rCut_ = simParams_->getCutoffRadius();
121      } else {      
# Line 166 | Line 173 | namespace OpenMD {
173          cutoffMethod_ = i->second;
174        }
175      } else {
176 <      sprintf(painCave.errMsg,
177 <              "ForceManager::setupCutoffs: No value was set for the cutoffMethod.\n"
178 <              "\tOpenMD will use SHIFTED_FORCE.\n");
179 <      painCave.isFatal = 0;
180 <      painCave.severity = OPENMD_INFO;
181 <      simError();
182 <      cutoffMethod_ = SHIFTED_FORCE;        
176 >      if (mdFileVersion > 1) {
177 >        sprintf(painCave.errMsg,
178 >                "ForceManager::setupCutoffs: No value was set for the cutoffMethod.\n"
179 >                "\tOpenMD will use SHIFTED_FORCE.\n");
180 >        painCave.isFatal = 0;
181 >        painCave.severity = OPENMD_INFO;
182 >        simError();
183 >        cutoffMethod_ = SHIFTED_FORCE;        
184 >      } else {
185 >        // handle the case where the old file version was in play
186 >        // (there should be no cutoffMethod, so we have to deduce it
187 >        // from other data).        
188 >
189 >        sprintf(painCave.errMsg,
190 >                "ForceManager::setupCutoffs : DEPRECATED FILE FORMAT!\n"
191 >                "\tOpenMD found a file which does not set a cutoffMethod.\n"
192 >                "\tOpenMD will attempt to deduce a cutoffMethod using the\n"
193 >                "\tbehavior of the older (version 1) code.  To remove this\n"
194 >                "\twarning, add an explicit cutoffMethod and change the top\n"
195 >                "\tof the file so that it begins with <OpenMD version=2>\n");
196 >        painCave.isFatal = 0;
197 >        painCave.severity = OPENMD_WARNING;
198 >        simError();            
199 >                
200 >        // The old file version tethered the shifting behavior to the
201 >        // electrostaticSummationMethod keyword.
202 >        
203 >        if (simParams_->haveElectrostaticSummationMethod()) {
204 >          string myMethod = simParams_->getElectrostaticSummationMethod();
205 >          toUpper(myMethod);
206 >        
207 >          if (myMethod == "SHIFTED_POTENTIAL") {
208 >            cutoffMethod_ = SHIFTED_POTENTIAL;
209 >          } else if (myMethod == "SHIFTED_FORCE") {
210 >            cutoffMethod_ = SHIFTED_FORCE;
211 >          }
212 >        
213 >          if (simParams_->haveSwitchingRadius())
214 >            rSwitch_ = simParams_->getSwitchingRadius();
215 >
216 >          if (myMethod == "SHIFTED_POTENTIAL" || myMethod == "SHIFTED_FORCE") {
217 >            if (simParams_->haveSwitchingRadius()){
218 >              sprintf(painCave.errMsg,
219 >                      "ForceManager::setupCutoffs : DEPRECATED ERROR MESSAGE\n"
220 >                      "\tA value was set for the switchingRadius\n"
221 >                      "\teven though the electrostaticSummationMethod was\n"
222 >                      "\tset to %s\n", myMethod.c_str());
223 >              painCave.severity = OPENMD_WARNING;
224 >              painCave.isFatal = 1;
225 >              simError();            
226 >            }
227 >          }
228 >          if (abs(rCut_ - rSwitch_) < 0.0001) {
229 >            if (cutoffMethod_ == SHIFTED_FORCE) {              
230 >              sprintf(painCave.errMsg,
231 >                      "ForceManager::setupCutoffs : DEPRECATED BEHAVIOR\n"
232 >                      "\tcutoffRadius and switchingRadius are set to the\n"
233 >                      "\tsame value.  OpenMD will use shifted force\n"
234 >                      "\tpotentials instead of switching functions.\n");
235 >              painCave.isFatal = 0;
236 >              painCave.severity = OPENMD_WARNING;
237 >              simError();            
238 >            } else {
239 >              cutoffMethod_ = SHIFTED_POTENTIAL;
240 >              sprintf(painCave.errMsg,
241 >                      "ForceManager::setupCutoffs : DEPRECATED BEHAVIOR\n"
242 >                      "\tcutoffRadius and switchingRadius are set to the\n"
243 >                      "\tsame value.  OpenMD will use shifted potentials\n"
244 >                      "\tinstead of switching functions.\n");
245 >              painCave.isFatal = 0;
246 >              painCave.severity = OPENMD_WARNING;
247 >              simError();            
248 >            }
249 >          }
250 >        }
251 >      }
252      }
253  
254      map<string, CutoffPolicy> stringToCutoffPolicy;
# Line 180 | Line 256 | namespace OpenMD {
256      stringToCutoffPolicy["MAX"] = MAX;
257      stringToCutoffPolicy["TRADITIONAL"] = TRADITIONAL;    
258  
259 <    std::string cutPolicy;
259 >    string cutPolicy;
260      if (forceFieldOptions_.haveCutoffPolicy()){
261        cutPolicy = forceFieldOptions_.getCutoffPolicy();
262      }else if (simParams_->haveCutoffPolicy()) {
# Line 242 | Line 318 | namespace OpenMD {
318          simError();
319        }
320      } else {
321 <      if (simParams_->haveSwitchingRadius()) {
322 <        map<string, CutoffMethod>::const_iterator it;
323 <        string theMeth;
324 <        for (it = stringToCutoffMethod.begin();
325 <             it != stringToCutoffMethod.end(); ++it) {
326 <          if (it->second == cutoffMethod_) {
327 <            theMeth = it->first;
328 <            break;
321 >      if (mdFileVersion > 1) {
322 >        // throw an error if we define a switching radius and don't need one.
323 >        // older file versions should not do this.
324 >        if (simParams_->haveSwitchingRadius()) {
325 >          map<string, CutoffMethod>::const_iterator it;
326 >          string theMeth;
327 >          for (it = stringToCutoffMethod.begin();
328 >               it != stringToCutoffMethod.end(); ++it) {
329 >            if (it->second == cutoffMethod_) {
330 >              theMeth = it->first;
331 >              break;
332 >            }
333            }
334 +          sprintf(painCave.errMsg,
335 +                  "ForceManager::setupCutoffs: the cutoffMethod (%s)\n"
336 +                  "\tis not set to SWITCHED, so switchingRadius value\n"
337 +                  "\twill be ignored for this simulation\n", theMeth.c_str());
338 +          painCave.isFatal = 0;
339 +          painCave.severity = OPENMD_WARNING;
340 +          simError();
341          }
255        sprintf(painCave.errMsg,
256                "ForceManager::setupCutoffs: the cutoffMethod (%s)\n"
257                "\tis not set to SWITCHED, so switchingRadius value\n"
258                "\twill be ignored for this simulation\n", theMeth.c_str());
259        painCave.isFatal = 0;
260        painCave.severity = OPENMD_WARNING;
261        simError();
342        }
263
343        rSwitch_ = rCut_;
344      }
345      
# Line 291 | Line 370 | namespace OpenMD {
370      switcher_->setSwitch(rSwitch_, rCut_);
371      interactionMan_->setSwitchingRadius(rSwitch_);
372    }
373 +
374 +
375 +
376    
377    void ForceManager::initialize() {
378  
# Line 306 | Line 388 | namespace OpenMD {
388        setupCutoffs();
389  
390        info_->prepareTopology();      
391 +
392 +      doParticlePot_ = info_->getSimParams()->getOutputParticlePotential();
393 +      doHeatFlux_ = info_->getSimParams()->getPrintHeatFlux();
394 +      if (doHeatFlux_) doParticlePot_ = true;
395 +  
396      }
397  
398      ForceFieldOptions& fopts = forceField_->getForceFieldOptions();
# Line 386 | Line 473 | namespace OpenMD {
473      }
474      
475      // Zero out the stress tensor
476 <    tau *= 0.0;
477 <    
476 >    stressTensor *= 0.0;
477 >    // Zero out the heatFlux
478 >    fDecomp_->setHeatFlux( V3Zero );    
479    }
480    
481    void ForceManager::shortRangeInteractions() {
# Line 420 | Line 508 | namespace OpenMD {
508  
509        for (bond = mol->beginBond(bondIter); bond != NULL;
510             bond = mol->nextBond(bondIter)) {
511 <        bond->calcForce();
511 >        bond->calcForce(doParticlePot_);
512          bondPotential += bond->getPotential();
513        }
514  
# Line 428 | Line 516 | namespace OpenMD {
516             bend = mol->nextBend(bendIter)) {
517          
518          RealType angle;
519 <        bend->calcForce(angle);
519 >        bend->calcForce(angle, doParticlePot_);
520          RealType currBendPot = bend->getPotential();          
521          
522          bendPotential += bend->getPotential();
# Line 453 | Line 541 | namespace OpenMD {
541        for (torsion = mol->beginTorsion(torsionIter); torsion != NULL;
542             torsion = mol->nextTorsion(torsionIter)) {
543          RealType angle;
544 <        torsion->calcForce(angle);
544 >        torsion->calcForce(angle, doParticlePot_);
545          RealType currTorsionPot = torsion->getPotential();
546          torsionPotential += torsion->getPotential();
547          map<Torsion*, TorsionDataSet>::iterator i = torsionDataSets.find(torsion);
# Line 477 | Line 565 | namespace OpenMD {
565             inversion != NULL;
566             inversion = mol->nextInversion(inversionIter)) {
567          RealType angle;
568 <        inversion->calcForce(angle);
568 >        inversion->calcForce(angle, doParticlePot_);
569          RealType currInversionPot = inversion->getPotential();
570          inversionPotential += inversion->getPotential();
571          map<Inversion*, InversionDataSet>::iterator i = inversionDataSets.find(inversion);
# Line 510 | Line 598 | namespace OpenMD {
598    
599    void ForceManager::longRangeInteractions() {
600  
601 +
602      Snapshot* curSnapshot = info_->getSnapshotManager()->getCurrentSnapshot();
603      DataStorage* config = &(curSnapshot->atomData);
604      DataStorage* cgConfig = &(curSnapshot->cgData);
# Line 526 | Line 615 | namespace OpenMD {
615             mol = info_->nextMolecule(mi)) {
616          for(cg = mol->beginCutoffGroup(ci); cg != NULL;
617              cg = mol->nextCutoffGroup(ci)) {
529          cerr << "branch1\n";
530          cerr << "globind = " << cg->getGlobalIndex() << "\n";
618            cg->updateCOM();
619          }
620        }      
621      } else {
622        // center of mass of the group is the same as position of the atom  
623        // if cutoff group does not exist
537      cerr << "branch2\n";
624        cgConfig->position = config->position;
625 +      cgConfig->velocity = config->velocity;
626      }
627  
628      fDecomp_->zeroWorkArrays();
629      fDecomp_->distributeData();
630      
631      int cg1, cg2, atom1, atom2, topoDist;
632 <    Vector3d d_grp, dag, d;
632 >    Vector3d d_grp, dag, d, gvel2, vel2;
633      RealType rgrpsq, rgrp, r2, r;
634      RealType electroMult, vdwMult;
635      RealType vij;
# Line 557 | Line 644 | namespace OpenMD {
644      RealType mf;
645      RealType lrPot;
646      RealType vpair;
647 +    RealType dVdFQ1(0.0);
648 +    RealType dVdFQ2(0.0);
649      potVec longRangePotential(0.0);
650      potVec workPot(0.0);
651 +    vector<int>::iterator ia, jb;
652  
653      int loopStart, loopEnd;
654  
# Line 567 | Line 657 | namespace OpenMD {
657      idat.pot = &workPot;
658      sdat.pot = fDecomp_->getEmbeddingPotential();
659      idat.vpair = &vpair;
660 +    idat.dVdFQ1 = &dVdFQ1;
661 +    idat.dVdFQ2 = &dVdFQ2;
662      idat.f1 = &f1;
663      idat.sw = &sw;
664      idat.shiftedPot = (cutoffMethod_ == SHIFTED_POTENTIAL) ? true : false;
665      idat.shiftedForce = (cutoffMethod_ == SHIFTED_FORCE) ? true : false;
666 +    idat.doParticlePot = doParticlePot_;
667 +    sdat.doParticlePot = doParticlePot_;
668      
669      loopEnd = PAIR_LOOP;
670      if (info_->requiresPrepair() ) {
# Line 585 | Line 679 | namespace OpenMD {
679          bool update_nlist = fDecomp_->checkNeighborList();
680          if (update_nlist)
681            neighborList = fDecomp_->buildNeighborList();
682 <      }      
683 <        
682 >      }            
683 >
684        for (vector<pair<int, int> >::iterator it = neighborList.begin();
685               it != neighborList.end(); ++it) {
686                  
# Line 596 | Line 690 | namespace OpenMD {
690          cuts = fDecomp_->getGroupCutoffs(cg1, cg2);
691  
692          d_grp  = fDecomp_->getIntergroupVector(cg1, cg2);
693 +
694          curSnapshot->wrapVector(d_grp);        
695          rgrpsq = d_grp.lengthSquare();
601
696          rCutSq = cuts.second;
697  
698          if (rgrpsq < rCutSq) {
# Line 610 | Line 704 | namespace OpenMD {
704            
705            in_switching_region = switcher_->getSwitch(rgrpsq, sw, dswdr,
706                                                       rgrp);
707 <              
707 >          
708            atomListRow = fDecomp_->getAtomsInGroupRow(cg1);
709            atomListColumn = fDecomp_->getAtomsInGroupColumn(cg2);
710  
711 <          for (vector<int>::iterator ia = atomListRow.begin();
711 >          if (doHeatFlux_)
712 >            gvel2 = fDecomp_->getGroupVelocityColumn(cg2);
713 >        
714 >          for (ia = atomListRow.begin();
715                 ia != atomListRow.end(); ++ia) {            
716              atom1 = (*ia);
717              
718 <            for (vector<int>::iterator jb = atomListColumn.begin();
718 >            for (jb = atomListColumn.begin();
719                   jb != atomListColumn.end(); ++jb) {              
720                atom2 = (*jb);
721  
# Line 626 | Line 723 | namespace OpenMD {
723                  vpair = 0.0;
724                  workPot = 0.0;
725                  f1 = V3Zero;
726 +                dVdFQ1 = 0.0;
727 +                dVdFQ2 = 0.0;
728  
729                  fDecomp_->fillInteractionData(idat, atom1, atom2);
730                  
# Line 636 | Line 735 | namespace OpenMD {
735                  if (atomListRow.size() == 1 && atomListColumn.size() == 1) {
736                    idat.d = &d_grp;
737                    idat.r2 = &rgrpsq;
738 <                  cerr << "dgrp = " << d_grp << "\n";
738 >                  if (doHeatFlux_)
739 >                    vel2 = gvel2;
740                  } else {
741                    d = fDecomp_->getInteratomicVector(atom1, atom2);
742                    curSnapshot->wrapVector( d );
743                    r2 = d.lengthSquare();
644                  cerr << "datm = " << d<< "\n";
744                    idat.d = &d;
745                    idat.r2 = &r2;
746 +                  if (doHeatFlux_)
747 +                    vel2 = fDecomp_->getAtomVelocityColumn(atom2);
748                  }
749 <                
649 <                cerr << "idat.d = " << *(idat.d) << "\n";
749 >              
750                  r = sqrt( *(idat.r2) );
751                  idat.rij = &r;
752                
# Line 655 | Line 755 | namespace OpenMD {
755                  } else {
756                    interactionMan_->doPair(idat);
757                    fDecomp_->unpackInteractionData(idat, atom1, atom2);
658
659                  cerr << "d = " << *(idat.d) << "\tv=" << vpair << "\tf=" << f1 << "\n";
758                    vij += vpair;
759                    fij += f1;
760 <                  tau -= outProduct( *(idat.d), f1);
760 >                  stressTensor -= outProduct( *(idat.d), f1);
761 >                  if (doHeatFlux_)
762 >                    fDecomp_->addToHeatFlux(*(idat.d) * dot(f1, vel2));
763                  }
764                }
765              }
# Line 672 | Line 772 | namespace OpenMD {
772                fij += fg;
773  
774                if (atomListRow.size() == 1 && atomListColumn.size() == 1) {
775 <                tau -= outProduct( *(idat.d), fg);
775 >                stressTensor -= outProduct( *(idat.d), fg);
776 >                if (doHeatFlux_)
777 >                  fDecomp_->addToHeatFlux(*(idat.d) * dot(fg, vel2));
778 >                
779                }
780            
781 <              for (vector<int>::iterator ia = atomListRow.begin();
781 >              for (ia = atomListRow.begin();
782                     ia != atomListRow.end(); ++ia) {            
783                  atom1 = (*ia);                
784                  mf = fDecomp_->getMassFactorRow(atom1);
# Line 683 | Line 786 | namespace OpenMD {
786                  // presence in switching region
787                  fg = swderiv * d_grp * mf;
788                  fDecomp_->addForceToAtomRow(atom1, fg);
686
789                  if (atomListRow.size() > 1) {
790                    if (info_->usesAtomicVirial()) {
791                      // find the distance between the atom
792                      // and the center of the cutoff group:
793                      dag = fDecomp_->getAtomToGroupVectorRow(atom1, cg1);
794 <                    tau -= outProduct(dag, fg);
794 >                    stressTensor -= outProduct(dag, fg);
795 >                    if (doHeatFlux_)
796 >                      fDecomp_->addToHeatFlux( dag * dot(fg, vel2));
797                    }
798                  }
799                }
800 <              for (vector<int>::iterator jb = atomListColumn.begin();
800 >              for (jb = atomListColumn.begin();
801                     jb != atomListColumn.end(); ++jb) {              
802                  atom2 = (*jb);
803                  mf = fDecomp_->getMassFactorColumn(atom2);
# Line 707 | Line 811 | namespace OpenMD {
811                      // find the distance between the atom
812                      // and the center of the cutoff group:
813                      dag = fDecomp_->getAtomToGroupVectorColumn(atom2, cg2);
814 <                    tau -= outProduct(dag, fg);
814 >                    stressTensor -= outProduct(dag, fg);
815 >                    if (doHeatFlux_)
816 >                      fDecomp_->addToHeatFlux( dag * dot(fg, vel2));
817                    }
818                  }
819                }
820              }
821 <            //if (!SIM_uses_AtomicVirial) {
822 <            //  tau -= outProduct(d_grp, fij);
821 >            //if (!info_->usesAtomicVirial()) {
822 >            //  stressTensor -= outProduct(d_grp, fij);
823 >            //  if (doHeatFlux_)
824 >            //     fDecomp_->addToHeatFlux( d_grp * dot(fij, vel2));
825              //}
826            }
827          }
# Line 733 | Line 841 | namespace OpenMD {
841  
842          }
843        }
736
844      }
845      
846      fDecomp_->collectData();
# Line 752 | Line 859 | namespace OpenMD {
859  
860      lrPot = longRangePotential.sum();
861  
862 <    //store the tau and long range potential    
862 >    //store the stressTensor and long range potential    
863      curSnapshot->statData[Stats::LONG_RANGE_POTENTIAL] = lrPot;
864      curSnapshot->statData[Stats::VANDERWAALS_POTENTIAL] = longRangePotential[VANDERWAALS_FAMILY];
865      curSnapshot->statData[Stats::ELECTROSTATIC_POTENTIAL] = longRangePotential[ELECTROSTATIC_FAMILY];
# Line 773 | Line 880 | namespace OpenMD {
880        for (rb = mol->beginRigidBody(rbIter); rb != NULL;
881             rb = mol->nextRigidBody(rbIter)) {
882          Mat3x3d rbTau = rb->calcForcesAndTorquesAndVirial();
883 <        tau += rbTau;
883 >        stressTensor += rbTau;
884        }
885      }
886      
887   #ifdef IS_MPI
888 <    Mat3x3d tmpTau(tau);
889 <    MPI_Allreduce(tmpTau.getArrayPointer(), tau.getArrayPointer(),
890 <                  9, MPI_REALTYPE, MPI_SUM, MPI_COMM_WORLD);
888 >
889 >    MPI::COMM_WORLD.Allreduce(MPI::IN_PLACE, stressTensor.getArrayPointer(), 9,
890 >                              MPI::REALTYPE, MPI::SUM);
891   #endif
892 <    curSnapshot->statData.setTau(tau);
892 >    curSnapshot->setStressTensor(stressTensor);
893 >    
894    }
895  
896   } //end namespace OpenMD

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines