ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/integrators/LDForceManager.cpp
(Generate patch)

Comparing trunk/OOPSE-4/src/integrators/LDForceManager.cpp (file contents):
Revision 2802 by gezelter, Tue Jun 6 17:43:28 2006 UTC vs.
Revision 3118 by chuckv, Fri Feb 2 18:55:21 2007 UTC

# Line 39 | Line 39
39   * such damages.
40   */
41   #include <fstream>
42 + #include <iostream>
43   #include "integrators/LDForceManager.hpp"
44   #include "math/CholeskyDecomposition.hpp"
45   #include "utils/OOPSEConstant.hpp"
# Line 263 | Line 264 | namespace oopse {
264      bool doLangevinForces;
265      bool freezeMolecule;
266      int fdf;
267 <
267 >    int nIntegrated;
268 >    int nFrozen;
269  
270      fdf = 0;
271 +
272      for (mol = info_->beginMolecule(i); mol != NULL; mol = info_->nextMolecule(i)) {
273  
274        doLangevinForces = true;          
# Line 275 | Line 278 | namespace oopse {
278          
279          Vector3d molPos = mol->getCom();
280          RealType molRad = molPos.length();
281 <        
281 >
282          doLangevinForces = false;
283          
284          if (molRad > langevinBufferRadius_) {
# Line 294 | Line 297 | namespace oopse {
297          if (freezeMolecule)
298            fdf += integrableObject->freeze();
299          
300 <        if (doLangevinForces) {          
300 >        if (doLangevinForces) {  
301            vel =integrableObject->getVel();
302            if (integrableObject->isDirectional()){
303              //calculate angular velocity in lab frame
# Line 352 | Line 355 | namespace oopse {
355      
356        }
357      }    
355    info_->setFdf(fdf);
358  
359 +    info_->setFdf(fdf);
360      veloMunge->removeComDrift();
361      // Remove angular drift if we are not using periodic boundary conditions.
362      if(!simParams->getUsePeriodicBoundaryConditions())

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines