1static inline MoveEnergy Insertion_Body(
Components& SystemComponents,
Simulations& Sims,
ForceField& FF,
RandomNumber& Random,
WidomStruct& Widom,
size_t SelectedMolInComponent,
size_t SelectedComponent,
double& Rosenbluth,
bool& SuccessConstruction,
size_t& SelectedTrial,
double& preFactor,
bool previous_step, double2 newScale)
4 int CBMCType = CBMC_INSERTION;
5 Rosenbluth=Widom_Move_FirstBead_PARTIAL(SystemComponents, Sims, FF, Random, Widom, SelectedMolInComponent, SelectedComponent, CBMCType, StoredR, &SelectedTrial, &SuccessConstruction, &energy, newScale);
7 if(Rosenbluth <= 1e-150) SuccessConstruction =
false;
8 if(!SuccessConstruction)
14 if(SystemComponents.Moleculesize[SelectedComponent] > 1 && Rosenbluth > 1e-150)
16 size_t SelectedFirstBeadTrial = SelectedTrial;
MoveEnergy temp_energy = energy;
17 Rosenbluth*=Widom_Move_Chain_PARTIAL(SystemComponents, Sims, FF, Random, Widom, SelectedMolInComponent, SelectedComponent, CBMCType, &SelectedTrial, &SuccessConstruction, &energy, SelectedFirstBeadTrial, newScale);
19 if(Rosenbluth <= 1e-150) SuccessConstruction =
false;
20 if(!SuccessConstruction)
26 energy += temp_energy;
29 preFactor = GetPrefactor(SystemComponents, Sims, SelectedComponent, INSERTION);
31 int MoveType = INSERTION;
34 MoveType = CBCF_INSERTION;
36 bool EwaldPerformed =
false;
37 if(!FF.noCharges && SystemComponents.hasPartialCharge[SelectedComponent])
39 double2 EwaldE = GPU_EwaldDifference_General(Sims.Box, Sims.d_a, Sims.New, Sims.Old, FF, Sims.Blocksum, SystemComponents, SelectedComponent, MoveType, SelectedTrial, newScale);
41 energy.GGEwaldE = EwaldE.x;
42 energy.HGEwaldE = EwaldE.y;
43 Rosenbluth *= std::exp(-SystemComponents.Beta * (EwaldE.x + EwaldE.y));
44 EwaldPerformed =
true;
47 TailE = TailCorrectionDifference(SystemComponents, SelectedComponent, FF.size, Sims.Box.Volume, MoveType);
48 Rosenbluth *= std::exp(-SystemComponents.Beta * TailE);
52 if(SystemComponents.UseDNNforHostGuest)
54 if(!EwaldPerformed) Prepare_DNN_InitialPositions(Sims.d_a, Sims.New, Sims.Old, SystemComponents, SelectedComponent, MoveType, SelectedTrial);
55 double DNN_New = DNN_Prediction_Move(SystemComponents, Sims, SelectedComponent, INSERTION);
56 energy.DNN_E = DNN_New;
57 double correction = energy.DNN_Correction();
58 if(fabs(correction) > SystemComponents.DNNDrift)
61 SystemComponents.InsertionDNNReject ++;
62 SuccessConstruction =
false;
63 WriteOutliers(SystemComponents, Sims, DNN_INSERTION, energy, correction);
67 SystemComponents.InsertionDNNDrift += fabs(correction);
68 Rosenbluth *= std::exp(-SystemComponents.Beta * correction);
74static inline MoveEnergy Deletion_Body(
Components& SystemComponents,
Simulations& Sims,
ForceField& FF,
RandomNumber& Random,
WidomStruct& Widom,
size_t SelectedMolInComponent,
size_t SelectedComponent,
size_t& UpdateLocation,
double& Rosenbluth,
bool& SuccessConstruction,
double& preFactor, double2 Scale)
76 size_t SelectedTrial = 0;
80 int CBMCType = CBMC_DELETION;
83 Rosenbluth=Widom_Move_FirstBead_PARTIAL(SystemComponents, Sims, FF, Random, Widom, SelectedMolInComponent, SelectedComponent, CBMCType, StoredR, &SelectedTrial, &SuccessConstruction, &energy, Scale);
84 if(Rosenbluth <= 1e-150) SuccessConstruction =
false;
85 if(!SuccessConstruction)
100 if(SystemComponents.Moleculesize[SelectedComponent] > 1)
102 size_t SelectedFirstBeadTrial = SelectedTrial;
MoveEnergy temp_energy = energy;
103 Rosenbluth*=Widom_Move_Chain_PARTIAL(SystemComponents, Sims, FF, Random, Widom, SelectedMolInComponent, SelectedComponent, CBMCType, &SelectedTrial, &SuccessConstruction, &energy, SelectedFirstBeadTrial, Scale);
104 energy += temp_energy;
106 if(Rosenbluth <= 1e-150) SuccessConstruction =
false;
107 if(!SuccessConstruction)
113 preFactor = GetPrefactor(SystemComponents, Sims, SelectedComponent, DELETION);
115 UpdateLocation = SelectedMolInComponent * SystemComponents.Moleculesize[SelectedComponent];
116 bool EwaldPerformed =
false;
117 if(!FF.noCharges && SystemComponents.hasPartialCharge[SelectedComponent])
119 int MoveType = DELETION;
if(Scale.y < 1.0) MoveType = CBCF_DELETION;
121 double2 EwaldE = GPU_EwaldDifference_General(Sims.Box, Sims.d_a, Sims.New, Sims.Old, FF, Sims.Blocksum, SystemComponents, SelectedComponent, MoveType, UpdateLocation, Scale);
122 Rosenbluth /= std::exp(-SystemComponents.Beta * (EwaldE.x + EwaldE.y));
123 energy.GGEwaldE = -1.0 * EwaldE.x;
124 energy.HGEwaldE = -1.0 * EwaldE.y;
125 EwaldPerformed =
true;
128 TailE = TailCorrectionDifference(SystemComponents, SelectedComponent, FF.size, Sims.Box.Volume, DELETION);
129 Rosenbluth /= std::exp(-SystemComponents.Beta * TailE);
130 energy.TailE = -TailE;
133 if(SystemComponents.UseDNNforHostGuest)
135 if(!EwaldPerformed) Prepare_DNN_InitialPositions(Sims.d_a, Sims.New, Sims.Old, SystemComponents, SelectedComponent, DELETION, UpdateLocation);
137 double DNN_New = DNN_Prediction_Move(SystemComponents, Sims, SelectedComponent, DELETION);
138 energy.DNN_E = DNN_New;
139 double correction = energy.DNN_Correction();
140 if(fabs(correction) > SystemComponents.DNNDrift)
143 SystemComponents.DeletionDNNReject ++;
144 SuccessConstruction =
false;
145 WriteOutliers(SystemComponents, Sims, DNN_DELETION, energy, correction);
149 SystemComponents.DeletionDNNDrift += fabs(correction);
150 Rosenbluth *= std::exp(-SystemComponents.Beta * correction);
Definition data_struct.h:843
Definition data_struct.h:794
Definition data_struct.h:615
Definition data_struct.h:1053
Definition data_struct.h:1027
Definition data_struct.h:1044