Skip to content
Snippets Groups Projects
Commit 92cfc4f2 authored by cmaffeo2's avatar cmaffeo2
Browse files

Fixed IMD for Langevin

parent 399695f3
No related branches found
No related tags found
No related merge requests found
...@@ -700,11 +700,12 @@ void GrandBrownTown::RunNoseHooverLangevin() ...@@ -700,11 +700,12 @@ void GrandBrownTown::RunNoseHooverLangevin()
delete[] coords; delete[] coords;
delete[] atomIds; delete[] atomIds;
} }
RBC.clearForceAndTorque();
if (imd_on && clientsock) if (imd_on && clientsock)
internal->setForceInternalOnDevice(imdForces); // TODO ensure replicas are mutually exclusive with IMD internal->setForceInternalOnDevice(imdForces); // TODO ensure replicas are mutually exclusive with IMD
else
RBC.clearForceAndTorque(); gpuErrchk(cudaMemsetAsync((void*)(internal->getForceInternal_d()),0,num*numReplicas*sizeof(Vector3)));
gpuErrchk(cudaMemsetAsync((void*)(internal->getForceInternal_d()),0,num*numReplicas*sizeof(Vector3)));
if (interparticleForce) if (interparticleForce)
{ {
// 'tabulatedPotential' - determines whether interaction is described with tabulated potentials or formulas // 'tabulatedPotential' - determines whether interaction is described with tabulated potentials or formulas
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment