2#include "mc_swap_utilities.h"
6__global__
void StoreNewLocation_Reinsertion(
Atoms Mol,
Atoms NewMol, double3* temp,
size_t SelectedTrial,
size_t Moleculesize)
10 temp[0] = NewMol.pos[SelectedTrial];
17 size_t chainsize = Moleculesize - 1;
18 for(
size_t i = 0; i < chainsize; i++)
20 size_t selectsize = SelectedTrial*chainsize+i;
21 temp[i+1] = NewMol.pos[selectsize];
30__global__
void Update_Reinsertion_data(
Atoms* d_a, double3* temp,
size_t SelectedComponent,
size_t UpdateLocation)
32 size_t i = blockIdx.x * blockDim.x + threadIdx.x;
33 size_t realLocation = UpdateLocation + i;
34 d_a[SelectedComponent].pos[realLocation] = temp[i];
40 double NMol = SystemComponents.NumberOfMolecule_for_Component[SelectedComponent];
41 if(SystemComponents.hasfractionalMolecule[SelectedComponent]) NMol--;
43 SystemComponents.Moves[SelectedComponent].ReinsertionTotal ++;
44 bool SuccessConstruction =
false;
45 size_t SelectedTrial = 0;
51 int CBMCType = REINSERTION_INSERTION;
52 double2 newScale = SystemComponents.Lambda[SelectedComponent].SET_SCALE(1.0);
53 double Rosenbluth=Widom_Move_FirstBead_PARTIAL(SystemComponents, Sims, FF, Random, Widom, SelectedMolInComponent, SelectedComponent, CBMCType, StoredR, &SelectedTrial, &SuccessConstruction, &energy, newScale);
55 if(Rosenbluth <= 1e-150) SuccessConstruction =
false;
57 if(!SuccessConstruction)
59 SystemComponents.Tmmc[SelectedComponent].Update(1.0, NMol, REINSERTION);
72 if(SystemComponents.Moleculesize[SelectedComponent] > 1)
74 size_t SelectedFirstBeadTrial = SelectedTrial;
76 Rosenbluth*=Widom_Move_Chain_PARTIAL(SystemComponents, Sims, FF, Random, Widom, SelectedMolInComponent, SelectedComponent, CBMCType, &SelectedTrial, &SuccessConstruction, &energy, SelectedFirstBeadTrial, newScale);
77 if(Rosenbluth <= 1e-150) SuccessConstruction =
false;
78 if(!SuccessConstruction)
80 SystemComponents.Tmmc[SelectedComponent].Update(1.0, NMol, REINSERTION);
84 energy += temp_energy;
96 cudaMalloc(&temp,
sizeof(double3) * SystemComponents.Moleculesize[SelectedComponent]);
97 StoreNewLocation_Reinsertion<<<1,1>>>(Sims.Old, Sims.New, temp, SelectedTrial, SystemComponents.Moleculesize[SelectedComponent]);
101 CBMCType = REINSERTION_RETRACE;
102 double Old_Rosen=Widom_Move_FirstBead_PARTIAL(SystemComponents, Sims, FF, Random, Widom, SelectedMolInComponent, SelectedComponent, CBMCType, StoredR, &SelectedTrial, &SuccessConstruction, &old_energy, newScale);
112 if(SystemComponents.Moleculesize[SelectedComponent] > 1)
114 size_t SelectedFirstBeadTrial = SelectedTrial;
116 Old_Rosen*=Widom_Move_Chain_PARTIAL(SystemComponents, Sims, FF, Random, Widom, SelectedMolInComponent, SelectedComponent, CBMCType, &SelectedTrial, &SuccessConstruction, &old_energy, SelectedFirstBeadTrial, newScale);
117 old_energy += temp_energy;
127 energy -= old_energy;
130 size_t UpdateLocation = SystemComponents.Moleculesize[SelectedComponent] * SelectedMolInComponent;
132 bool EwaldPerformed =
false;
133 if(!FF.noCharges && SystemComponents.hasPartialCharge[SelectedComponent])
135 double2 EwaldE = GPU_EwaldDifference_Reinsertion(Sims.Box, Sims.d_a, Sims.Old, temp, FF, Sims.Blocksum, SystemComponents, SelectedComponent, UpdateLocation);
137 energy.GGEwaldE = EwaldE.x;
138 energy.HGEwaldE = EwaldE.y;
139 Rosenbluth *= std::exp(-SystemComponents.Beta * (EwaldE.x + EwaldE.y));
140 EwaldPerformed =
true;
144 if(SystemComponents.UseDNNforHostGuest)
146 if(!EwaldPerformed) Prepare_DNN_InitialPositions_Reinsertion(Sims.d_a, Sims.Old, temp, SystemComponents, SelectedComponent, UpdateLocation);
147 energy.DNN_E = DNN_Prediction_Reinsertion(SystemComponents, Sims, SelectedComponent, temp);
150 double correction = energy.DNN_Correction();
151 if(fabs(correction) > SystemComponents.DNNDrift)
154 SystemComponents.ReinsertionDNNReject++;
160 SystemComponents.ReinsertionDNNDrift += fabs(correction);
161 Rosenbluth *= std::exp(-SystemComponents.Beta * correction);
165 double RANDOM = Get_Uniform_Random();
167 if(RANDOM < Rosenbluth / Old_Rosen)
169 SystemComponents.Moves[SelectedComponent].ReinsertionAccepted ++;
171 Update_Reinsertion_data<<<1,SystemComponents.Moleculesize[SelectedComponent]>>>(Sims.d_a, temp, SelectedComponent, UpdateLocation); checkCUDAError(
"error Updating Reinsertion data");
173 if(!FF.noCharges && SystemComponents.hasPartialCharge[SelectedComponent])
174 Update_Ewald_Vector(Sims.Box,
false, SystemComponents, SelectedComponent);
175 SystemComponents.Tmmc[SelectedComponent].Update(1.0, NMol, REINSERTION);
182 SystemComponents.Tmmc[SelectedComponent].Update(1.0, NMol, REINSERTION);
191 bool SuccessConstruction =
false;
192 double Rosenbluth = 0.0;
193 size_t SelectedTrial = 0;
194 double preFactor = 0.0;
197 MoveEnergy energy = Insertion_Body(SystemComponents, Sims, FF, Random, Widom, SelectedMolInComponent, SelectedComponent, Rosenbluth, SuccessConstruction, SelectedTrial, preFactor,
false, newScale);
198 if(!SuccessConstruction)
203 double IdealRosen = SystemComponents.IdealRosenbluthWeight[SelectedComponent];
204 double RANDOM = 1e-100;
205 if(RANDOM < preFactor * Rosenbluth / IdealRosen)
207 size_t UpdateLocation = SystemComponents.Moleculesize[SelectedComponent] * SystemComponents.NumberOfMolecule_for_Component[SelectedComponent];
209 Update_insertion_data<<<1,1>>>(Sims.d_a, Sims.Old, Sims.New, SelectedTrial, SelectedComponent, UpdateLocation, (int) SystemComponents.Moleculesize[SelectedComponent]);
210 if(!FF.noCharges && SystemComponents.hasPartialCharge[SelectedComponent])
212 Update_Ewald_Vector(Sims.Box,
false, SystemComponents, SelectedComponent);
214 Update_NumberOfMolecules(SystemComponents, Sims.d_a, SelectedComponent, INSERTION);
225 double NMol = SystemComponents.NumberOfMolecule_for_Component[SelectedComponent];
226 if(SystemComponents.hasfractionalMolecule[SelectedComponent]) NMol--;
227 double TMMCPacc = 0.0;
229 SystemComponents.Moves[SelectedComponent].InsertionTotal ++;
230 bool SuccessConstruction =
false;
231 double Rosenbluth = 0.0;
232 size_t SelectedTrial = 0;
233 double preFactor = 0.0;
235 double2 newScale = SystemComponents.Lambda[SelectedComponent].SET_SCALE(1.0);
236 MoveEnergy energy = Insertion_Body(SystemComponents, Sims, FF, Random, Widom, SelectedMolInComponent, SelectedComponent, Rosenbluth, SuccessConstruction, SelectedTrial, preFactor,
false, newScale);
237 if(!SuccessConstruction)
240 SystemComponents.Tmmc[SelectedComponent].Update(TMMCPacc, NMol, INSERTION);
241 SystemComponents.Moves[SelectedComponent].RecordRosen(0.0, INSERTION);
245 double IdealRosen = SystemComponents.IdealRosenbluthWeight[SelectedComponent];
246 double RANDOM = Get_Uniform_Random();
247 TMMCPacc = preFactor * Rosenbluth / IdealRosen;
249 SystemComponents.Tmmc[SelectedComponent].ApplyWLBias(preFactor, NMol, INSERTION);
250 SystemComponents.Tmmc[SelectedComponent].ApplyTMBias(preFactor, NMol, INSERTION);
253 if(RANDOM < preFactor * Rosenbluth / IdealRosen) Accept =
true;
254 SystemComponents.Tmmc[SelectedComponent].TreatAccOutofBound(Accept, NMol, INSERTION);
255 SystemComponents.Moves[SelectedComponent].RecordRosen(Rosenbluth, INSERTION);
259 SystemComponents.Moves[SelectedComponent].InsertionAccepted ++;
260 AcceptInsertion(SystemComponents, Sims, SelectedComponent, SelectedTrial, FF.noCharges, INSERTION);
261 SystemComponents.Tmmc[SelectedComponent].Update(TMMCPacc, NMol, INSERTION);
266 SystemComponents.Tmmc[SelectedComponent].Update(TMMCPacc, NMol, INSERTION);
274 double NMol = SystemComponents.NumberOfMolecule_for_Component[SelectedComponent];
275 if(SystemComponents.hasfractionalMolecule[SelectedComponent]) NMol--;
276 double TMMCPacc = 0.0;
278 SystemComponents.Moves[SelectedComponent].DeletionTotal ++;
280 double preFactor = 0.0;
281 bool SuccessConstruction =
false;
283 double Rosenbluth = 0.0;
284 size_t UpdateLocation = 0;
285 int CBMCType = CBMC_DELETION;
286 double2 Scale = SystemComponents.Lambda[SelectedComponent].SET_SCALE(1.0);
288 energy = Deletion_Body(SystemComponents, Sims, FF, Random, Widom, SelectedMolInComponent, SelectedComponent, UpdateLocation, Rosenbluth, SuccessConstruction, preFactor, Scale);
289 if(!SuccessConstruction)
292 SystemComponents.Tmmc[SelectedComponent].Update(TMMCPacc, NMol, DELETION);
293 SystemComponents.Moves[SelectedComponent].RecordRosen(0.0, DELETION);
304 double IdealRosen = SystemComponents.IdealRosenbluthWeight[SelectedComponent];
305 double RANDOM = Get_Uniform_Random();
306 TMMCPacc = preFactor * IdealRosen / Rosenbluth;
308 SystemComponents.Tmmc[SelectedComponent].ApplyWLBias(preFactor, NMol, DELETION);
309 SystemComponents.Tmmc[SelectedComponent].ApplyTMBias(preFactor, NMol, DELETION);
312 if(RANDOM < preFactor * IdealRosen / Rosenbluth) Accept =
true;
313 SystemComponents.Tmmc[SelectedComponent].TreatAccOutofBound(Accept, NMol, DELETION);
317 SystemComponents.Moves[SelectedComponent].DeletionAccepted ++;
318 AcceptDeletion(SystemComponents, Sims, SelectedComponent, UpdateLocation, SelectedMolInComponent, FF.noCharges);
320 SystemComponents.Tmmc[SelectedComponent].Update(TMMCPacc, NMol, DELETION);
321 energy.take_negative();
325 SystemComponents.Tmmc[SelectedComponent].Update(TMMCPacc, NMol, DELETION);
330static inline void GibbsParticleTransfer(std::vector<Components>& SystemComponents,
Simulations*& Sims,
ForceField FF,
RandomNumber Random, std::vector<WidomStruct>& Widom, std::vector<SystemEnergies>& Energy,
size_t SelectedComponent,
Gibbs& GibbsStatistics)
332 size_t NBox = SystemComponents.size();
333 size_t SelectedBox = 0;
335 GibbsStatistics.GibbsXferStats.x += 1.0;
337 if(Get_Uniform_Random() > 0.5)
344 double2 Scale = {1.0, 1.0};
345 bool TransferFractionalMolecule =
false;
347 if(SystemComponents[OtherBox].NumberOfMolecule_for_Component[SelectedComponent] == 0)
return;
348 size_t DeletionSelectedMol = (size_t) (Get_Uniform_Random()*(SystemComponents[OtherBox].NumberOfMolecule_for_Component[SelectedComponent]));
350 if(SystemComponents[OtherBox].hasfractionalMolecule[SelectedComponent] && SystemComponents[OtherBox].Lambda[SelectedComponent].FractionalMoleculeID == DeletionSelectedMol)
352 double oldBin = SystemComponents[OtherBox].Lambda[SelectedComponent].currentBin;
353 double delta = SystemComponents[OtherBox].Lambda[SelectedComponent].delta;
354 double oldLambda = delta *
static_cast<double>(oldBin);
355 Scale = SystemComponents[OtherBox].Lambda[SelectedComponent].SET_SCALE(oldLambda);
356 TransferFractionalMolecule =
true;
363 size_t InsertionSelectedTrial = 0;
364 double InsertionPrefactor = 0.0;
365 double InsertionRosen = 0.0;
366 bool InsertionSuccess =
false;
367 size_t InsertionSelectedMol = 0;
368 MoveEnergy InsertionEnergy = Insertion_Body(SystemComponents[SelectedBox], Sims[SelectedBox], FF, Random, Widom[SelectedBox], InsertionSelectedMol, SelectedComponent, InsertionRosen, InsertionSuccess, InsertionSelectedTrial, InsertionPrefactor,
false, Scale);
369 printf(
"Gibbs Particle Insertion energy: "); InsertionEnergy.print();
370 if(!InsertionSuccess)
return;
375 size_t DeletionUpdateLocation = 0;
376 double DeletionPrefactor = 0.0;
377 double DeletionRosen = 0.0;
378 bool DeletionSuccess =
false;
379 MoveEnergy DeletionEnergy = Deletion_Body(SystemComponents[OtherBox], Sims[OtherBox], FF, Random, Widom[OtherBox], DeletionSelectedMol, SelectedComponent, DeletionUpdateLocation, DeletionRosen, DeletionSuccess, DeletionPrefactor, Scale);
380 printf(
"Gibbs Particle Deletion energy: "); DeletionEnergy.print();
381 if(!DeletionSuccess)
return;
385 double NMolA=
static_cast<double>(SystemComponents[SelectedBox].TotalNumberOfMolecules - SystemComponents[SelectedBox].NumberOfFrameworks);
386 double NMolB=
static_cast<double>(SystemComponents[OtherBox].TotalNumberOfMolecules - SystemComponents[OtherBox].NumberOfFrameworks);
388 for(
size_t comp = 0; comp < SystemComponents[SelectedBox].Total_Components; comp++)
390 if(SystemComponents[SelectedBox].hasfractionalMolecule[comp])
395 for(
size_t comp = 0; comp < SystemComponents[OtherBox].Total_Components; comp++)
397 if(SystemComponents[OtherBox].hasfractionalMolecule[comp])
404 if(Get_Uniform_Random()< (InsertionRosen * NMolB * Sims[SelectedBox].Box.Volume) / (DeletionRosen * (NMolA + 1) * Sims[OtherBox].Box.Volume)) Accept =
true;
410 GibbsStatistics.GibbsXferStats.y += 1.0;
415 if(TransferFractionalMolecule)
417 SystemComponents[SelectedBox].hasfractionalMolecule[SelectedComponent] =
true;
418 SystemComponents[OtherBox].hasfractionalMolecule[SelectedComponent] =
false;
419 SystemComponents[SelectedBox].Lambda[SelectedComponent].currentBin = SystemComponents[OtherBox].Lambda[SelectedComponent].currentBin;
424 AcceptInsertion(SystemComponents[SelectedBox], Sims[SelectedBox], SelectedComponent, InsertionSelectedTrial, FF.noCharges, INSERTION);
426 SystemComponents[SelectedBox].deltaE += InsertionEnergy;
433 AcceptDeletion(SystemComponents[OtherBox], Sims[OtherBox], SelectedComponent, DeletionUpdateLocation, DeletionSelectedMol, FF.noCharges);
434 Energy[OtherBox].running_energy -= DeletionEnergy.total();
435 SystemComponents[OtherBox].deltaE -= DeletionEnergy;
440__global__
void copy_firstbead_to_new(
Atoms NEW,
Atoms* d_a,
size_t comp,
size_t position)
442 NEW.pos[0] = d_a[comp].pos[position];
445__global__
void Update_IdentitySwap_Insertion_data(
Atoms* d_a, double3* temp,
size_t NEWComponent,
size_t UpdateLocation,
size_t MolID,
size_t Molsize)
448 for(
size_t i = 0; i < Molsize; i++)
450 size_t realLocation = UpdateLocation + i;
451 d_a[NEWComponent].pos[realLocation] = temp[i];
452 d_a[NEWComponent].scale[realLocation] = 1.0;
453 d_a[NEWComponent].charge[realLocation]= d_a[NEWComponent].charge[i];
454 d_a[NEWComponent].scaleCoul[realLocation]=1.0;
455 d_a[NEWComponent].Type[realLocation] = d_a[NEWComponent].Type[i];
456 d_a[NEWComponent].MolID[realLocation] = MolID;
458 d_a[NEWComponent].size += Molsize;
468 size_t NEWComponent = 0;
469 size_t OLDComponent = 0;
474 if((SystemComponents.TotalNumberOfMolecules - SystemComponents.NumberOfFrameworks) == 0)
479 while(OLDComponent == 0 || OLDComponent >= SystemComponents.NComponents.x ||
480 NEWComponent == 0 || NEWComponent >= SystemComponents.NComponents.x ||
483 OLDComponent = (size_t) (Get_Uniform_Random()*(SystemComponents.NComponents.x - SystemComponents.NComponents.y)) + SystemComponents.NComponents.y;
484 NEWComponent = (size_t) (Get_Uniform_Random()*(SystemComponents.NComponents.x - SystemComponents.NComponents.y)) + SystemComponents.NComponents.y;
485 NOld = SystemComponents.NumberOfMolecule_for_Component[OLDComponent];
496 size_t OLDMolInComponent = (size_t) (Get_Uniform_Random() * SystemComponents.NumberOfMolecule_for_Component[OLDComponent]);
503 double NNEWMol =
static_cast<double>(SystemComponents.NumberOfMolecule_for_Component[NEWComponent]);
504 double NOLDMol =
static_cast<double>(SystemComponents.NumberOfMolecule_for_Component[OLDComponent]);
505 if(SystemComponents.hasfractionalMolecule[NEWComponent]) NNEWMol -= 1.0;
506 if(SystemComponents.hasfractionalMolecule[OLDComponent]) NOLDMol -= 1.0;
511 size_t NEWMolInComponent = SystemComponents.NumberOfMolecule_for_Component[NEWComponent];
513 SystemComponents.Moves[OLDComponent].IdentitySwapRemoveTotal ++;
514 SystemComponents.Moves[NEWComponent].IdentitySwapAddTotal ++;
515 SystemComponents.Moves[OLDComponent].IdentitySwap_Total_TO[NEWComponent] ++;
517 bool SuccessConstruction =
false;
518 size_t SelectedTrial = 0;
524 int CBMCType = IDENTITY_SWAP_NEW;
526 copy_firstbead_to_new<<<1,1>>>(Sims.New, Sims.d_a, OLDComponent, OLDMolInComponent * SystemComponents.Moleculesize[OLDComponent]);
528 Sims.ExcludeList[0] = {OLDComponent, OLDMolInComponent};
529 double2 newScale = SystemComponents.Lambda[NEWComponent].SET_SCALE(1.0);
530 double Rosenbluth=Widom_Move_FirstBead_PARTIAL(SystemComponents, Sims, FF, Random, Widom, NEWMolInComponent, NEWComponent, CBMCType, StoredR, &SelectedTrial, &SuccessConstruction, &energy, newScale);
532 if(Rosenbluth <= 1e-150) SuccessConstruction =
false;
534 if(!SuccessConstruction)
536 energy.zero(); Sims.ExcludeList[0] = {-1, -1};
540 if(SystemComponents.Moleculesize[NEWComponent] > 1 && Rosenbluth > 1e-150)
542 size_t SelectedFirstBeadTrial = SelectedTrial;
544 Rosenbluth*=Widom_Move_Chain_PARTIAL(SystemComponents, Sims, FF, Random, Widom, NEWMolInComponent, NEWComponent, CBMCType, &SelectedTrial, &SuccessConstruction, &energy, SelectedFirstBeadTrial, newScale);
545 if(Rosenbluth <= 1e-150) SuccessConstruction =
false;
546 if(!SuccessConstruction)
548 energy.zero(); Sims.ExcludeList[0] = {-1, -1};
551 energy += temp_energy;
557 cudaMalloc(&temp,
sizeof(double3) * SystemComponents.Moleculesize[NEWComponent]);
558 StoreNewLocation_Reinsertion<<<1,1>>>(Sims.Old, Sims.New, temp, SelectedTrial, SystemComponents.Moleculesize[NEWComponent]);
564 Sims.ExcludeList[0] = {-1, -1};
566 CBMCType = IDENTITY_SWAP_OLD;
567 double Old_Rosen=Widom_Move_FirstBead_PARTIAL(SystemComponents, Sims, FF, Random, Widom, OLDMolInComponent, OLDComponent, CBMCType, StoredR, &SelectedTrial, &SuccessConstruction, &old_energy, newScale);
568 if(SystemComponents.Moleculesize[OLDComponent] > 1)
570 size_t SelectedFirstBeadTrial = SelectedTrial;
572 Old_Rosen*=Widom_Move_Chain_PARTIAL(SystemComponents, Sims, FF, Random, Widom, OLDMolInComponent, OLDComponent, CBMCType, &SelectedTrial, &SuccessConstruction, &old_energy, SelectedFirstBeadTrial, newScale);
573 old_energy += temp_energy;
577 energy -= old_energy;
580 size_t UpdateLocation = SystemComponents.Moleculesize[OLDComponent] * OLDMolInComponent;
583 double2 EwaldE = GPU_EwaldDifference_IdentitySwap(Sims.Box, Sims.d_a, Sims.Old, temp, FF, Sims.Blocksum, SystemComponents, OLDComponent, NEWComponent, UpdateLocation);
584 energy.GGEwaldE = EwaldE.x;
585 energy.HGEwaldE = EwaldE.y;
586 Rosenbluth *= std::exp(-SystemComponents.Beta * (EwaldE.x + EwaldE.y));
590 energy.TailE = TailCorrectionIdentitySwap(SystemComponents, NEWComponent, OLDComponent, FF.size, Sims.Box.Volume);
591 Rosenbluth *= std::exp(-SystemComponents.Beta * energy.TailE);
594 if(SystemComponents.UseDNNforHostGuest)
throw std::runtime_error(
"NO DEEP POTENTIAL FOR IDENTITY SWAP!");
599 double NEWIdealRosen = SystemComponents.IdealRosenbluthWeight[NEWComponent];
600 double OLDIdealRosen = SystemComponents.IdealRosenbluthWeight[OLDComponent];
602 double preFactor = GetPrefactor(SystemComponents, Sims, NEWComponent, INSERTION);
603 preFactor *= GetPrefactor(SystemComponents, Sims, OLDComponent, DELETION);
605 double Pacc = preFactor * (Rosenbluth / NEWIdealRosen) / (Old_Rosen / OLDIdealRosen);
613 double RANDOM = Get_Uniform_Random();
615 if(RANDOM < Pacc) Accept =
true;
619 SystemComponents.Moves[NEWComponent].IdentitySwapAddAccepted ++;
620 SystemComponents.Moves[OLDComponent].IdentitySwapRemoveAccepted ++;
622 SystemComponents.Moves[OLDComponent].IdentitySwap_Acc_TO[NEWComponent] ++;
623 if(NEWComponent != OLDComponent)
625 size_t LastMolecule = SystemComponents.NumberOfMolecule_for_Component[OLDComponent]-1;
626 size_t LastLocation = LastMolecule*SystemComponents.Moleculesize[OLDComponent];
627 Update_deletion_data<<<1,1>>>(Sims.d_a, OLDComponent, UpdateLocation, (int) SystemComponents.Moleculesize[OLDComponent], LastLocation);
630 if((SystemComponents.hasfractionalMolecule[OLDComponent])&&(LastMolecule == SystemComponents.Lambda[OLDComponent].FractionalMoleculeID))
633 SystemComponents.Lambda[OLDComponent].FractionalMoleculeID = OLDMolInComponent;
636 UpdateLocation = SystemComponents.Moleculesize[NEWComponent] * NEWMolInComponent;
637 Update_IdentitySwap_Insertion_data<<<1,1>>>(Sims.d_a, temp, NEWComponent, UpdateLocation, NEWMolInComponent, SystemComponents.Moleculesize[NEWComponent]); checkCUDAError(
"error Updating Identity Swap Insertion data");
639 Update_NumberOfMolecules(SystemComponents, Sims.d_a, NEWComponent, INSERTION);
640 Update_NumberOfMolecules(SystemComponents, Sims.d_a, OLDComponent, DELETION);
647 Update_Reinsertion_data<<<1,SystemComponents.Moleculesize[OLDComponent]>>>(Sims.d_a, temp, OLDComponent, UpdateLocation);
651 if(!FF.noCharges && ((SystemComponents.hasPartialCharge[NEWComponent]) ||(SystemComponents.hasPartialCharge[OLDComponent])))
652 Update_Ewald_Vector(Sims.Box,
false, SystemComponents, NEWComponent);
Definition data_struct.h:746
Definition data_struct.h:843
Definition data_struct.h:794
Definition data_struct.h:61
Definition data_struct.h:615
Definition data_struct.h:1053
Definition data_struct.h:1027
Definition data_struct.h:1044