My Project
Loading...
Searching...
No Matches
data_struct.h
1#include <filesystem>
2
3#include <stdio.h>
4#include <vector>
5#include <string>
6#include <complex>
7#include <cstdlib>
8#include <random>
9#include <optional>
10//###PATCH_LCLIN_DATA_STRUCT_H###//
11
12//###PATCH_ALLEGRO_DATA_STRUCT_H###//
13#define BLOCKSIZE 1024
14#define DEFAULTTHREAD 128
15double Get_Uniform_Random();
16
17enum MoveTypes {TRANSLATION = 0, ROTATION, SINGLE_INSERTION, SINGLE_DELETION, SPECIAL_ROTATION, INSERTION, DELETION, REINSERTION, CBCF_LAMBDACHANGE, CBCF_INSERTION, CBCF_DELETION, IDENTITY_SWAP};
18
19enum CBMC_Types {CBMC_INSERTION = 0, CBMC_DELETION, REINSERTION_INSERTION, REINSERTION_RETRACE, IDENTITY_SWAP_NEW, IDENTITY_SWAP_OLD};
20
21enum SIMULATION_MODE {CREATE_MOLECULE = 0, INITIALIZATION, EQUILIBRATION, PRODUCTION};
22
23enum LAMBDA_TYPE {SHI_MAGINN = 0, BRICK_CFC};
24
25enum DNN_CalcType {TOTAL = 0, OLD, NEW, REINSERTION_NEW, REINSERTION_OLD, DNN_INSERTION, DNN_DELETION};
26
27enum ADD_MINUS_SIGNS {ADD = 0, MINUS};
28
29enum ROTATION_AXIS {X = 0, Y, Z, SELF_DEFINED};
30
31enum INTERACTION_TYPES {HH = 0, HG, GG};
32
33enum RESTART_FILE_TYPES {RASPA_RESTART = 0, LAMMPS_DATA};
34
35//Zhao's note: For the stage of evaluating total energy of the system//
36enum ENERGYEVALSTAGE {INITIAL = 0, CREATEMOL, FINAL, CREATEMOL_DELTA, DELTA, CREATEMOL_DELTA_CHECK, DELTA_CHECK, DRIFT, AVERAGE, AVERAGE_ERR};
37
39{
40 double x;
41 double y;
42 double z;
43};
44
45struct Complex
46{
47 double real;
48 double imag;
49};
50
51struct Units
52{
53 double MassUnit = {1.6605402e-27};
54 double TimeUnit = {1e-12};
55 double LengthUnit = {1e-10};
56 double energy_to_kelvin = {1.2027242847};
57 double BoltzmannConstant = {1.38e-23};
58};
59
60struct Gibbs
61{
62 bool DoGibbs = false;
63 double GibbsBoxProb = 0.0;
64 double GibbsXferProb = 0.0;
65 double MaxGibbsBoxChange = 0.1;
66 double GibbsTime={0.0};
67 double2 GibbsBoxStats;
68 double2 GibbsXferStats;
69 double2 TempGibbsBoxStats = {0.0, 0.0};
70};
71
72struct LAMBDA
73{
74 int newBin; //Bins range from (-binsize/2, binsize/2), since lambda is from -1 to 1.
75 int currentBin;
76 int lambdatype = SHI_MAGINN;
77 double delta; //size of the bin in the lambda histogram//
78 double WangLandauScalingFactor;
79 size_t binsize = {10};
80 size_t FractionalMoleculeID;
81 std::vector<double>Histogram;
82 std::vector<double>biasFactor;
83 double2 SET_SCALE(double lambda)
84 {
85 double2 scaling;
86 switch(lambdatype)
87 {
88 case SHI_MAGINN: //Scale for Coulombic goes with pow(lambda,5)
89 {
90 scaling.x = lambda;
91 scaling.y = std::pow(lambda, 5);
92 break;
93 }
94 case BRICK_CFC: //Scale for Coulombic and VDW are according to the brick CFC code convention
95 {
96 scaling.x = lambda < 0.5 ? 2.0 * lambda : 1.0;
97 scaling.y = lambda < 0.5 ? 0.0 : 2.0 * (lambda - 0.5);
98 break;
99 }
100 }
101 return scaling;
102 }
103};
104
105struct TMMC
106{
107 std::vector<double3> CMatrix; //x = -1 (delete), y = 0 (other move that doesnot change macrostate), z = +1 (insert)//
108 std::vector<double> WLBias;
109 std::vector<double> TMBias;
110 std::vector<double> ln_g; //For WL//
111 std::vector<double> lnpi; //For TM//
112 std::vector<double> forward_lnpi; //Debugging//
113 std::vector<double> reverse_lnpi;
114 std::vector<double> Histogram;
115 double WLFactor = 1.0;
116 size_t MaxMacrostate = 0;
117 size_t MinMacrostate = 0;
118 size_t nbinPerMacrostate = 1;
119 size_t currentBin = 0; //Should match what you have for lambda bin//
120 //size_t UpdateTMEvery = 1000000;
121 size_t UpdateTMEvery = 5000;
122 size_t TMUpdateTimes = 0;
123 bool DoTMMC = false;
124 bool DoUseBias = false; //Whether or not to use WL or TM Bias for changing macrostates//
125 bool UseWLBias = false; //Whether to use WL for the Bias//
126 bool UseTMBias = true; //Whether to use TM for the Bias//
127 bool RejectOutofBound = true; //Whether to reject the move out of the bound of macrostate//
128 bool TMMCRestart = false; //Whether to read a TMMC file from TMMC_Initial folder
129 bool RezeroAfterInitialization = false;
130 //Zhao's note: the N below is the Number of Molecule from the OLD STATE//
131 //(According to Vince Shen's code)//
132 void Update(double Pacc, size_t N, int MoveType)
133 {
134 if(!DoTMMC) return;
135 if (Pacc > 1.0) Pacc = 1.0; //If Pacc is too big, reduce to 1.0//
136 size_t BinLocation = (N - MinMacrostate) * nbinPerMacrostate + currentBin;
137 switch(MoveType)
138 {
139 case TRANSLATION: case ROTATION: case REINSERTION:
140 {
141 if(RejectOutofBound && ((N > MaxMacrostate) || (N < MinMacrostate))) return;
142 CMatrix[BinLocation].y += Pacc; //If for GCMC, the Pacc for these moves is always 1. should check for this//
143 ln_g[BinLocation] += WLFactor;
144 WLBias[BinLocation] = -ln_g[N]; //WL Bias//
145 Histogram[BinLocation] ++;
146 break;
147 }
148 case INSERTION: case SINGLE_INSERTION:
149 {
150 size_t NewBinLocation = (N - MinMacrostate + 1) * nbinPerMacrostate + currentBin;
151 CMatrix[BinLocation].z += Pacc; //Insertion is the third value//
152 CMatrix[BinLocation].y += 1-Pacc;
153 //if(OldN > CMatrix.size()) printf("At the limit, OldN: %zu, N: %zu, NewN: %zu\n", OldN, N, NewN);
154 if(RejectOutofBound && ((N + 1) > MaxMacrostate))
155 {
156 Histogram[N] ++;
157 return;
158 }
159 Histogram[NewBinLocation] ++;
160 ln_g[NewBinLocation] += WLFactor;
161 WLBias[NewBinLocation] = -ln_g[N]; //WL Bias//
162 break;
163 }
164 case DELETION: case SINGLE_DELETION:
165 {
166 size_t NewBinLocation = (N - MinMacrostate - 1) * nbinPerMacrostate + currentBin;
167 CMatrix[BinLocation].x += Pacc; //Deletion is the first value//
168 CMatrix[BinLocation].y += 1-Pacc;
169 ln_g[BinLocation] += WLFactor;
170 int Update_State = static_cast<int>(BinLocation) - 1;
171 if(RejectOutofBound && (Update_State < static_cast<int>(MinMacrostate)))
172 {
173 Histogram[BinLocation] ++;
174 return;
175 }
176 Histogram[NewBinLocation] ++;
177 ln_g[NewBinLocation] += WLFactor;
178 WLBias[NewBinLocation] = -ln_g[N]; //WL Bias//
179 break;
180 }
181 case CBCF_LAMBDACHANGE: case CBCF_INSERTION: case CBCF_DELETION:
182 {
183 printf("Use the SPECIAL FUNCTION FOR TMMC + CBCFC\n");
184 break;
185 /*
186 size_t NewBinLocation = (N - MinMacrostate + 1) * nbinPerMacrostate + currentBin;
187 CMatrix[BinLocation].z += Pacc; //Insertion is the third value//
188 CMatrix[BinLocation].y += 1-Pacc;
189 //if(OldN > CMatrix.size()) printf("At the limit, OldN: %zu, N: %zu, NewN: %zu\n", OldN, N, NewN);
190 if(RejectOutofBound && ((N + 1) > MaxMacrostate)) return;
191 Histogram[NewBinLocation] ++;
192 ln_g[NewBinLocation] += WLFactor;
193 WLBias[NewBinLocation] = -ln_g[N]; //WL Bias//
194 break;
195 */
196 }
197 }
198 }
199 //Special update function just for CBCF moves//
200 void UpdateCBCF(double Pacc, size_t N, int change)
201 {
202 if(!DoTMMC) return;
203 if (Pacc > 1.0) Pacc = 1.0; //If Pacc is too big, reduce to 1.0//
204 size_t BinLocation = (N - MinMacrostate) * nbinPerMacrostate + currentBin;
205 size_t NewBinLocation = BinLocation + change;
206 size_t NTotalBins = Histogram.size();
207 if(RejectOutofBound && (NewBinLocation >= NTotalBins || ((int) BinLocation + change) < 0)) return;
208
209 CMatrix[BinLocation].z += Pacc; //Insertion is the third value//
210 CMatrix[BinLocation].y += 1-Pacc;
211 Histogram[NewBinLocation] ++;
212 ln_g[NewBinLocation] += WLFactor;
213 WLBias[NewBinLocation] = -ln_g[N]; //WL Bias//
214 }
215 //Zhao's note: the N below is the Number of Molecule from the OLD STATE//
216 //The bias is added to the preFactor//
217 //Following the way of WL sampling's bias for CBCFC (see mc_cbcfc.h)//
218 //Need to see whether this makes sense//
219 void ApplyWLBias(double& preFactor, size_t N, int MoveType)
220 {
221 if(!DoTMMC || !DoUseBias || !UseWLBias) return;
222 if(N < MinMacrostate || N > MaxMacrostate) return; //No bias for macrostate out of the bound
223 switch(MoveType)
224 {
225 case TRANSLATION: case ROTATION: case REINSERTION:
226 {
227 //Do not need the bias for moves that does not change the macrostate//
228 break;
229 }
230 case INSERTION: case SINGLE_INSERTION: case CBCF_INSERTION:
231 {
232 if(RejectOutofBound && (N + 1) > MaxMacrostate) return;
233 N -= MinMacrostate;
234 double TMMCBias = WLBias[N + 1] - WLBias[N];
235 TMMCBias = std::exp(TMMCBias); //See if Minus sign works//
236 preFactor *= TMMCBias;
237 break;
238 }
239 case DELETION: case SINGLE_DELETION: case CBCF_DELETION:
240 {
241 if(RejectOutofBound && (N - 1) < MinMacrostate) return;
242 N -= MinMacrostate;
243 double TMMCBias = WLBias[N - 1] - WLBias[N];
244 TMMCBias = std::exp(TMMCBias); //See if Minus sign works//
245 preFactor *= TMMCBias;
246 break;
247 }
248 }
249 }
250 void ApplyWLBiasCBCF(double& preFactor, size_t N, int change)
251 {
252 if(!DoTMMC || !DoUseBias || !UseWLBias) return;
253 if(N < MinMacrostate || N > MaxMacrostate) return; //No bias for macrostate out of the bound
254 size_t BinLocation = (N - MinMacrostate) * nbinPerMacrostate + currentBin;
255 size_t NewBinLocation = BinLocation + change;
256 size_t NTotalBins = Histogram.size();
257 if(RejectOutofBound && (NewBinLocation >= NTotalBins || ((int) BinLocation + change) < 0)) return;
258 double TMMCBias = WLBias[NewBinLocation] - WLBias[BinLocation];
259 TMMCBias = std::exp(TMMCBias); //See if Minus sign works//
260 preFactor *= TMMCBias;
261 }
262 //Following the way of WL sampling's bias for CBCFC (see mc_cbcfc.h)//
263 //Need to see whether this makes sense//
264 //Zhao's note: the N below is the Number of Molecule from the OLD STATE//
265 //The bias is added to the preFactor//
266 void ApplyTMBias(double& preFactor, size_t N, int MoveType)
267 {
268 if(!DoTMMC || !DoUseBias || !UseTMBias) return;
269 if(N < MinMacrostate || N > MaxMacrostate) return; //No bias for macrostate out of the bound
270 switch(MoveType)
271 {
272 case TRANSLATION: case ROTATION: case REINSERTION: case CBCF_LAMBDACHANGE:
273 {
274 //Do not need the bias for moves that does not change the macrostate//
275 break;
276 }
277 case INSERTION: case SINGLE_INSERTION: case CBCF_INSERTION:
278 {
279 if(RejectOutofBound && (N + 1) > MaxMacrostate) return;
280 N -= MinMacrostate;
281 double TMMCBias = TMBias[N + 1] - TMBias[N];
282 TMMCBias = std::exp(TMMCBias); //See if Minus sign works//
283 preFactor *= TMMCBias;
284 break;
285 }
286 case DELETION: case SINGLE_DELETION: case CBCF_DELETION:
287 {
288 if(RejectOutofBound && (N - 1) < MinMacrostate) return;
289 N -= MinMacrostate;
290 double TMMCBias = TMBias[N - 1] - TMBias[N];
291 TMMCBias = std::exp(TMMCBias); //See if Minus sign works//
292 preFactor *= TMMCBias;
293 break;
294 }
295 }
296 }
297 void ApplyTMBiasCBCF(double& preFactor, size_t N, int change)
298 {
299 if(!DoTMMC || !DoUseBias || !UseWLBias) return;
300 if(N < MinMacrostate || N > MaxMacrostate) return; //No bias for macrostate out of the bound
301 size_t BinLocation = (N - MinMacrostate) * nbinPerMacrostate + currentBin;
302 size_t NewBinLocation = BinLocation + change;
303 size_t NTotalBins = Histogram.size();
304 if(RejectOutofBound && (NewBinLocation >= NTotalBins || ((int) BinLocation + change) < 0)) return;
305 double TMMCBias = TMBias[NewBinLocation] - TMBias[BinLocation];
306 TMMCBias = std::exp(TMMCBias);
307 preFactor *= TMMCBias;
308 }
309 //Add features about CBCFC + TMMC//
310 void AdjustTMBias()
311 {
312 if(!DoTMMC || !DoUseBias || !UseTMBias) return;
313 TMUpdateTimes ++;
314 //printf("Adjusting TMBias\n");
315 //First step is to get the lowest and highest visited states in terms of loading//
316 size_t MinVisited = 0; size_t MaxVisited = 0;
317 size_t nonzeroCount=0;
318 //The a, MinVisited, and MaxVisited here do not go out of bound of the vector//
319 size_t NTotalBins = Histogram.size();
320 for(size_t a = 0; a < NTotalBins; a++)
321 {
322 if(Histogram[a] != 0)
323 {
324 if(nonzeroCount==0) MinVisited = a;
325 MaxVisited = a;
326 nonzeroCount++;
327 }
328 }
329 //From Vince Shen's pseudo code//
330 lnpi[MinVisited] = 0.0;
331 double Maxlnpi = lnpi[MinVisited];
332 //Update the lnpi for the sampled region//
333 //x: -1; y: 0; z: +1//
334 for(size_t a = MinVisited; a < MaxVisited; a++)
335 {
336 //Zhao's note: add protection to avoid numerical issues//
337 if(CMatrix[a].z != 0) lnpi[a+1] = lnpi[a] + std::log(CMatrix[a].z) - std::log(CMatrix[a].x + CMatrix[a].y + CMatrix[a].z); //Forward//
338 forward_lnpi[a+1] = lnpi[a+1];
339 if(CMatrix[a+1].x != 0) lnpi[a+1] = lnpi[a+1] - std::log(CMatrix[a+1].x) + std::log(CMatrix[a+1].x + CMatrix[a+1].y + CMatrix[a+1].z); //Reverse//
340 reverse_lnpi[a+1] = lnpi[a+1];
341 //printf("Loading: %zu, a+1, %zu, lnpi[a]: %.5f, lnpi[a+1]: %.5f\n", a, a+1, lnpi[a], lnpi[a+1]);
342 if(lnpi[a+1] > Maxlnpi) Maxlnpi = lnpi[a+1];
343 }
344 //For the unsampled states, fill them with the MinVisited/MaxVisited stats//
345 for(size_t a = 0; a < MinVisited; a++) lnpi[a] = lnpi[MinVisited];
346 for(size_t a = MaxVisited; a < NTotalBins; a++) lnpi[a] = lnpi[MaxVisited];
347 //Normalize//
348 double NormalFactor = 0.0;
349 for(size_t a = 0; a < NTotalBins; a++) lnpi[a] -= Maxlnpi;
350 for(size_t a = 0; a < NTotalBins; a++) NormalFactor += std::exp(lnpi[a]); //sum of exp(lnpi)//
351 //printf("Normalize Factor (Before): %.5f\n", NormalFactor);
352 NormalFactor = -std::log(NormalFactor); //Take log of NormalFactor//
353 //printf("Normalize Factor (After): %.5f\n", NormalFactor);
354 for(size_t a = 0; a < NTotalBins; a++)
355 {
356 lnpi[a] += NormalFactor; //Zhao's note: mind the sign//
357 TMBias[a]= -lnpi[a];
358 }
359 }
360 //Determine whether to reject the move if it move out of the bounds//
361 void TreatAccOutofBound(bool& Accept, size_t N, int MoveType)
362 {
363 if(!DoTMMC) return;
364 if(!Accept || !RejectOutofBound) return; //if the move is already rejected, no need to reject again//
365 switch(MoveType)
366 {
367 case TRANSLATION: case ROTATION: case REINSERTION:
368 {
369 //Do not need to determine accept/reject for moves that does not change the macrostate//
370 break;
371 }
372 case INSERTION: case SINGLE_INSERTION:
373 {
374 if(RejectOutofBound && (N + 1) > MaxMacrostate) Accept = false;
375 break;
376 }
377 case DELETION: case SINGLE_DELETION:
378 {
379 if(RejectOutofBound && (N - 1) < MinMacrostate) Accept = false;
380 break;
381 }
382 }
383 }
384 void TreatAccOutofBoundCBCF(bool& Accept, size_t N, int change)
385 {
386 if(!DoTMMC) return;
387 if(!Accept || !RejectOutofBound) return; //if the move is already rejected, no need to reject again//
388 size_t BinLocation = (N - MinMacrostate) * nbinPerMacrostate + currentBin;
389 size_t NewBinLocation = BinLocation + change;
390 size_t NTotalBins = Histogram.size();
391 if(NewBinLocation >= NTotalBins) Accept = false;
392 }
393 //Clear Collection matrix stats (used after initialization cycles)
394 void ClearCMatrix()
395 {
396 if(!DoTMMC || !RezeroAfterInitialization) return;
397 double3 temp = {0.0, 0.0, 0.0};
398 std::fill(CMatrix.begin(), CMatrix.end(), temp);
399 std::fill(Histogram.begin(), Histogram.end(), 0.0);
400 std::fill(lnpi.begin(), lnpi.end(), 0.0);
401 std::fill(TMBias.begin(), TMBias.end(), 1.0);
402 }
403};
404
405//Zhao's note: keep track of the Rosenbluth weights during the simulation//
407{
408 double3 Total = {0.0, 0.0, 0.0};
409 double3 WidomInsertion = {0.0, 0.0, 0.0};
410 double3 Insertion = {0.0, 0.0, 0.0};
411 double3 Deletion = {0.0, 0.0, 0.0};
412 //NOTE: DO NOT RECORD FOR REINSERTIONS, SINCE THE DELETION PART OF REINSERTION IS MODIFIED//
413};
414
416{
417 //Translation Move//
418 double TranslationProb =0.0;
419 double RotationProb =0.0;
420 double SpecialRotationProb =0.0;
421 double WidomProb =0.0;
422 double SwapProb =0.0;
423 double ReinsertionProb =0.0;
424 double IdentitySwapProb =0.0;
425 double CBCFProb =0.0;
426 double TotalProb =0.0;
427 //Translation Move//
428 int TranslationAccepted = 0; //zeroed when max translation updated
429 int TranslationTotal = 0; //zeroed when max translation updated
430 int CumTranslationAccepted = 0; //Cumulative
431 int CumTranslationTotal = 0;
432 double TranslationAccRatio = 0.0;
433 //Rotation Move//
434 int RotationAccepted = 0; //zeroed when max rotation updated
435 int RotationTotal = 0; //zeroed when max rotation updated
436 int CumRotationAccepted = 0; //Cumulative
437 int CumRotationTotal = 0;
438 double RotationAccRatio = 0;
439 //Special Rotation Move//
440 int SpecialRotationAccepted = 0;
441 int SpecialRotationTotal = 0;
442 double SpecialRotationAccRatio = 0;
443 //Insertion Move//
444 size_t InsertionTotal = 0;
445 size_t InsertionAccepted = 0;
446 //Deletion Move//
447 size_t DeletionTotal = 0;
448 size_t DeletionAccepted = 0;
449 //Reinsertion Move//
450 size_t ReinsertionTotal = 0;
451 size_t ReinsertionAccepted = 0;
452 //CBCFSwap Move//
453 size_t CBCFTotal = 0;
454 size_t CBCFAccepted = 0;
455 size_t CBCFInsertionTotal = 0;
456 size_t CBCFInsertionAccepted = 0;
457 size_t CBCFLambdaTotal = 0;
458 size_t CBCFLambdaAccepted = 0;
459 size_t CBCFDeletionTotal = 0;
460 size_t CBCFDeletionAccepted = 0;
461 //Identity Swap Move//
462 std::vector<size_t>IdentitySwap_Total_TO;
463 std::vector<size_t>IdentitySwap_Acc_TO;
464 size_t IdentitySwapAddAccepted=0;
465 size_t IdentitySwapAddTotal=0;
466 size_t IdentitySwapRemoveAccepted=0;
467 size_t IdentitySwapRemoveTotal=0;
468
469 size_t BlockID = 0; //Keep track of the current Block for Averages//
470 std::vector<double2>MolAverage;
471 //x: average; y: average^2; z: Number of Widom insertion performed//
472 std::vector<RosenbluthWeight>Rosen; //vector over Nblocks//
473 void NormalizeProbabilities()
474 {
475 //Zhao's note: the probabilities here are what we defined in simulation.input, raw values//
476 TotalProb+=TranslationProb;
477 TotalProb+=RotationProb;
478 TotalProb+=SpecialRotationProb;
479 TotalProb+=WidomProb;
480 TotalProb+=ReinsertionProb;
481 TotalProb+=IdentitySwapProb;
482 TotalProb+=SwapProb;
483 TotalProb+=CBCFProb;
484
485 if(TotalProb > 1e-10)
486 {
487 //printf("TotalProb: %.5f\n", TotalProb);
488 TranslationProb /=TotalProb;
489 RotationProb /=TotalProb;
490 SpecialRotationProb/=TotalProb;
491 WidomProb /=TotalProb;
492 SwapProb /=TotalProb;
493 CBCFProb /=TotalProb;
494 ReinsertionProb /=TotalProb;
495 IdentitySwapProb /=TotalProb;
496 TotalProb = 1.0;
497 }
498 RotationProb += TranslationProb;
499 SpecialRotationProb += RotationProb;
500 WidomProb += SpecialRotationProb;
501 ReinsertionProb += WidomProb;
502 IdentitySwapProb += ReinsertionProb;
503 CBCFProb += IdentitySwapProb;
504 SwapProb += CBCFProb;
505 }
506 void PrintProbabilities()
507 {
508 printf("==================================================\n");
509 printf("ACCUMULATED Probabilities:\n");
510 printf("Translation Probability: %.5f\n", TranslationProb);
511 printf("Rotation Probability: %.5f\n", RotationProb);
512 printf("Special Rotation Probability: %.5f\n", SpecialRotationProb);
513 printf("Widom Probability: %.5f\n", WidomProb);
514 printf("Reinsertion Probability: %.5f\n", ReinsertionProb);
515 printf("Identity Swap Probability: %.5f\n", IdentitySwapProb);
516 printf("CBCF Swap Probability: %.5f\n", CBCFProb);
517 printf("Swap Probability: %.5f\n", SwapProb);
518 printf("Sum of Probabilities: %.5f\n", TotalProb);
519 printf("==================================================\n");
520 }
521 void RecordRosen(double R, int MoveType)
522 {
523 if(MoveType != INSERTION && MoveType != DELETION) return;
524 double R2 = R * R;
525 Rosen[BlockID].Total.x += R;
526 Rosen[BlockID].Total.y += R * R;
527 Rosen[BlockID].Total.z += 1.0;
528 if(MoveType == INSERTION)
529 {
530 Rosen[BlockID].Insertion.x += R;
531 Rosen[BlockID].Insertion.y += R * R;
532 Rosen[BlockID].Insertion.z += 1.0;
533 }
534 else if(MoveType == DELETION)
535 {
536 Rosen[BlockID].Deletion.x += R;
537 Rosen[BlockID].Deletion.y += R * R;
538 Rosen[BlockID].Deletion.z += 1.0;
539 }
540 }
541 void ClearRosen(size_t BlockID)
542 {
543 Rosen[BlockID].Total = {0.0, 0.0, 0.0};
544 Rosen[BlockID].Insertion = {0.0, 0.0, 0.0};
545 Rosen[BlockID].Deletion = {0.0, 0.0, 0.0};
546 Rosen[BlockID].WidomInsertion = {0.0, 0.0, 0.0};
547 }
548 void Record_Move_Total(int MoveType)
549 {
550 switch(MoveType)
551 {
552 case TRANSLATION: {TranslationTotal++; break; }
553 case ROTATION: {RotationTotal++; break; }
554 case SPECIAL_ROTATION: {SpecialRotationTotal++; break; }
555 case INSERTION: case SINGLE_INSERTION: {InsertionTotal++; break; }
556 case DELETION: case SINGLE_DELETION: {DeletionTotal++; break; }
557 }
558 }
559 void Record_Move_Accept(int MoveType)
560 {
561 switch(MoveType)
562 {
563 case TRANSLATION: {TranslationAccepted++; break; }
564 case ROTATION: {RotationAccepted++; break; }
565 case SPECIAL_ROTATION: {SpecialRotationAccepted++; break; }
566 case INSERTION: case SINGLE_INSERTION: {InsertionAccepted++; break; }
567 case DELETION: case SINGLE_DELETION: {DeletionAccepted++; break; }
568 }
569 }
570};
571
573{
574 double CreateMol_running_energy={0.0};
575 double running_energy = {0.0};
576 //Total Energies//
577 double InitialEnergy = {0.0};
578 double CreateMolEnergy = {0.0};
579 double FinalEnergy = {0.0};
580 //VDW//
581 double InitialVDW = {0.0};
582 double CreateMolVDW = {0.0};
583 double FinalVDW = {0.0};
584 //Real Part Coulomb//
585 double InitialReal = {0.0};
586 double CreateMolReal = {0.0};
587 double FinalReal = {0.0};
588 //Ewald Energy//
589 double InitialEwaldE = {0.0};
590 double CreateMolEwaldE = {0.0};
591 double FinalEwaldE = {0.0};
592 //HostGuest Ewald//
593 double InitialHGEwaldE = {0.0};
594 double CreateMolHGEwaldE= {0.0};
595 double FinalHGEwaldE = {0.0};
596 //Tail Correction//
597 double InitialTailE = {0.0};
598 double CreateMolTailE = {0.0};
599 double FinalTailE = {0.0};
600 //DNN Energy//
601 double InitialDNN = {0.0};
602 double CreateMolDNN = {0.0};
603 double FinalDNN = {0.0};
604};
605
606struct Tail
607{
608 bool UseTail = {false};
609 double Energy = {0.0};
610};
611
612//Temporary energies for a move//
613//Zhao's note: consider making this the default return variable for moves, like RASPA-3?//
615{
616 double storedHGVDW=0.0;
617 double storedHGReal=0.0;
618 double storedHGEwaldE=0.0;
619 // van der Waals //
620 double HHVDW=0.0;
621 double HGVDW=0.0;
622 double GGVDW=0.0;
623 // Real Part of Coulomb //
624 double HHReal=0.0;
625 double HGReal=0.0;
626 double GGReal=0.0;
627 // Long-Range Ewald Energy //
628 double HHEwaldE=0.0;
629 double HGEwaldE=0.0;
630 double GGEwaldE=0.0;
631 // Other Energies //
632 double TailE =0.0;
633 double DNN_E =0.0;
634 double total()
635 {
636 return HHVDW + HGVDW + GGVDW +
637 HHReal + HGReal + GGReal +
638 HHEwaldE + HGEwaldE + GGEwaldE +
639 TailE + DNN_E;
640 };
641 void take_negative()
642 {
643 storedHGVDW *= -1.0;
644 storedHGReal*= -1.0;
645 storedHGEwaldE *= -1.0;
646 HHVDW *= -1.0; HHReal *= -1.0;
647 HGVDW *= -1.0; HGReal *= -1.0;
648 GGVDW *= -1.0; GGReal *= -1.0;
649 HHEwaldE *= -1.0; HGEwaldE *= -1.0; GGEwaldE *= -1.0;
650 TailE *= -1.0;
651 DNN_E *= -1.0;
652 };
653 void zero()
654 {
655 storedHGVDW =0.0;
656 storedHGReal=0.0;
657 storedHGEwaldE=0.0;
658 HHVDW=0.0; HHReal=0.0;
659 HGVDW=0.0; HGReal=0.0;
660 GGVDW=0.0; GGReal=0.0;
661 HHEwaldE =0.0;
662 HGEwaldE =0.0;
663 GGEwaldE =0.0;
664 TailE =0.0;
665 DNN_E =0.0;
666 };
667 void print()
668 {
669 printf("HHVDW: %.5f, HHReal: %.5f, HGVDW: %.5f, HGReal: %.5f, GGVDW: %.5f, GGReal: %.5f, HHEwaldE: %.5f, HGEwaldE: %.5f, GGEwaldE: %.5f, TailE: %.5f, DNN_E: %.5f\n", HHVDW, HHReal, HGVDW, HGReal, GGVDW, GGReal, HHEwaldE, HGEwaldE, GGEwaldE, TailE, DNN_E);
670 printf("Stored HGVDW: %.5f, Stored HGReal: %.5f, Stored HGEwaldE: %.5f\n", storedHGVDW, storedHGReal, storedHGEwaldE);
671 };
672 double DNN_Correction() //Using DNN energy to replace HGVDW, HGReal and HGEwaldE//
673 {
674 double correction = DNN_E - HGVDW - HGReal - HGEwaldE;
675 storedHGVDW = HGVDW;
676 storedHGReal= HGReal;
677 storedHGEwaldE = HGEwaldE;
678 HGVDW = 0.0;
679 HGReal= 0.0;
680 HGEwaldE = 0.0;
681 return correction;
682 };
683};
684/*
685__host__ MoveEnergy MoveEnergy_Multiply(MoveEnergy A, MoveEnergy B)
686{
687 MoveEnergy X;
688 X.storedHGVDW = A.storedHGVDW * B.storedHGVDW;
689 X.storedHGReal = A.storedHGReal * B.storedHGReal;
690 X.storedHGEwaldE = A.storedHGEwaldE * B.storedHGEwaldE;
691
692 X.HHVDW = A.HHVDW * B.HHVDW;
693 X.HGVDW = A.HGVDW * B.HGVDW;
694 X.GGVDW = A.GGVDW * B.GGVDW;
695 X.HHReal = A.HHReal * B.HHReal;
696 X.HGReal = A.HGReal * B.HGReal;
697 X.GGReal = A.GGReal * B.GGReal;
698 X.HHEwaldE = A.HHEwaldE * B.HHEwaldE;
699 X.HGEwaldE = A.HGEwaldE * B.HGEwaldE;
700 X.GGEwaldE = A.GGEwaldE * B.GGEwaldE;
701 X.TailE = A.TailE * B.TailE;
702 X.DNN_E = A.DNN_E * B.DNN_E;
703 return X;
704}
705__host__ MoveEnergy MoveEnergy_DIVIDE_DOUBLE(MoveEnergy A, double B)
706{
707 MoveEnergy X;
708 double OneOverB = 1.0 / B;
709 X.storedHGVDW = A.storedHGVDW * OneOverB;
710 X.storedHGReal = A.storedHGReal * OneOverB;
711 X.storedHGEwaldE = A.storedHGEwaldE * OneOverB;
712
713 X.HHVDW = A.HHVDW * OneOverB;
714 X.HGVDW = A.HGVDW * OneOverB;
715 X.GGVDW = A.GGVDW * OneOverB;
716 X.HHReal = A.HHReal * OneOverB;
717 X.HGReal = A.HGReal * OneOverB;
718 X.GGReal = A.GGReal * OneOverB;
719 X.HHEwaldE = A.HHEwaldE * OneOverB;
720 X.HGEwaldE = A.HGEwaldE * OneOverB;
721 X.GGEwaldE = A.HHEwaldE * OneOverB;
722 X.TailE = A.TailE * OneOverB;
723 X.DNN_E = A.DNN_E * OneOverB;
724 return X;
725}
726__host__ void operator +=(MoveEnergy& A, MoveEnergy B)
727{
728 A.storedHGVDW += B.storedHGVDW;
729 A.storedHGReal += B.storedHGReal;
730 A.storedHGEwaldE += B.storedHGEwaldE;
731
732 A.HHVDW += B.HHVDW;
733 A.HGVDW += B.HGVDW;
734 A.GGVDW += B.GGVDW;
735 A.HHReal += B.HHReal;
736 A.HGReal += B.HGReal;
737 A.GGReal += B.GGReal;
738 A.HHEwaldE += B.HHEwaldE;
739 A.HGEwaldE += B.HGEwaldE;
740 A.GGEwaldE += B.GGEwaldE;
741 A.TailE += B.TailE;
742 A.DNN_E += B.DNN_E;
743}
744*/
745struct Atoms
746{
747 double3* pos;
748 double* scale;
749 double* charge;
750 double* scaleCoul;
751 size_t* Type;
752 size_t* MolID;
753 size_t Molsize;
754 size_t size;
755 size_t Allocate_size;
756};
757
759{
760 bool SeparatedComponent = false; //By false, it means the framework is assumed as a whole by default//
761 size_t Number_of_Molecules_for_Framework_component;
762 size_t Number_of_atoms_for_each_molecule;
763 std::vector<std::vector<size_t>>Atom_Indices_for_Molecule;
764};
765
766struct PseudoAtomDefinitions //Always a host struct, never on the device
767{
768 std::vector<std::string> Name;
769 std::vector<std::string> Symbol;
770 std::vector<size_t> SymbolIndex; //It has the size of the number of pseudo atoms, it tells the ID of the symbol for the pseudo-atoms, e.g., CO2->C->2
771 std::vector<double> oxidation;
772 std::vector<double> mass;
773 std::vector<double> charge;
774 std::vector<double> polar; //polarizability
775 size_t MatchSymbolTypeFromSymbolName(std::string& SymbolName)
776 {
777 size_t SymbolIdx = 0;
778 for(size_t i = 0; i < Symbol.size(); i++)
779 {
780 if(SymbolName == Symbol[i])
781 {
782 SymbolIdx = i; break;
783 }
784 }
785 return SymbolIdx;
786 }
787 size_t GetSymbolIdxFromPseudoAtomTypeIdx(size_t Type)
788 {
789 return SymbolIndex[Type];
790 }
791};
792
794{
795 double* epsilon;
796 double* sigma;
797 double* z; // a third term
798 double* shift;
799 int* FFType; //type of force field calculation
800 bool noCharges;
801 bool VDWRealBias = true; //By default, the CBMC moves use VDW + Real Biasing//
802 size_t size;
803 double OverlapCriteria;
804 double CutOffVDW; // Square of cutoff for vdW interaction //
805 double CutOffCoul; // Square of cutoff for Coulombic interaction //
806 //double Prefactor;
807 //double Alpha;
808};
809
811{
812 std::vector<std::vector<int3>>List;
813 std::vector<std::vector<int3>>FrameworkList;
814 std::vector<size_t>cumsum_neigh_per_atom;
815 size_t nedges = 0;
816};
817
819{
820 Complex* eik_x;
821 Complex* eik_y;
822 Complex* eik_z;
823 Complex* AdsorbateEik;
824 Complex* FrameworkEik;
825 Complex* tempEik;
826
827 double* Cell;
828 double* InverseCell;
829 double Pressure;
830 double Volume;
831 double ReciprocalCutOff;
832 double Prefactor;
833 double Alpha;
834 double tol1; //For Ewald, see read_Ewald_Parameters_from_input function//
835 bool Cubic;
836 bool ExcludeHostGuestEwald = false;
837 bool UseLAMMPSEwald = false;
838 int3 kmax;
839};
840//###PATCH_ALLEGRO_H###//
841
843{
844 size_t Total_Components; // Number of Components in the system (including framework)
845 int3 NComponents; // Total components (x), Framework Components (y), Guest Components (z)
846 int3 NumberofUnitCells;
847 size_t MoviesEvery = 5000; // Write Movies (LAMMPS data file) every X MC Steps/Cycles
848 size_t PrintStatsEvery = 5000; // Write instantaneous loading and energy to screen every X MC Steps/Cycles
849
850 size_t Nblock={5}; // Number of Blocks for block averages
851 size_t CURRENTCYCLE={0};
852 double DNNPredictTime={0.0};
853 double DNNFeatureTime={0.0};
854 double DNNGPUTime={0.0};
855 double DNNSortTime={0.0};
856 double DNNstdsortTime={0.0};
857 double DNNFeaturizationTime={0.0};
858 size_t TotalNumberOfMolecules; // Total Number of Molecules (including framework)
859 size_t NumberOfFrameworks; // Total Number of framework species, usually 1.
860 double Temperature={0.0};
861 double Beta; // Inverse Temperature
862
863 bool* flag; // flags for checking overlaps (on host), device version in Simulations struct//
864
865 std::vector<FRAMEWORK_COMPONENT_LISTS>FrameworkComponentDef;
866
867 MoveEnergy Initial_Energy;
868 MoveEnergy CreateMol_Energy;
869 MoveEnergy Final_Energy;
870 //Zhao's note: for average and standard deviations for energies
871 std::vector<MoveEnergy> BookKeepEnergy;
872 std::vector<MoveEnergy> BookKeepEnergy_SQ;
873 MoveEnergy AverageEnergy;
874 MoveEnergy AverageEnergy_Errorbar;
875 /*
876 //Zhao's note: do not use pass by ref for DeltaE
877 void Gather_Averages_MoveEnergy(int Cycles, int Blocksize, MoveEnergy DeltaE)
878 {
879 size_t blockID = Cycles/Blocksize;
880 if(blockID >= Nblock) blockID --;
881 if(blockID == Nblock-1)
882 {
883 if(Cycles % Blocksize != 0) Blocksize += Cycles % Blocksize;
884 }
885 //Get total energy//
886 //MoveEnergy UpdateDeltaE = ;
887 BookKeepEnergy[blockID] += MoveEnergy_DIVIDE_DOUBLE(DeltaE, static_cast<double>(Blocksize));
888 BookKeepEnergy_SQ[blockID] += MoveEnergy_Multiply(MoveEnergy_DIVIDE_DOUBLE(DeltaE, static_cast<double>(Blocksize)), DeltaE);
889 }
890 void Calculate_Overall_Averages_MoveEnergy(int Blocksize)
891 {
892 //Calculate just the overall, now//
893 for(size_t i = 0; i < Nblock; i++)
894 {
895 AverageEnergy += MoveEnergy_DIVIDE_DOUBLE(BookKeepEnergy[i], static_cast<double>(Nblock));
896 AverageEnergy_Errorbar += MoveEnergy_Multiply(MoveEnergy_DIVIDE_DOUBLE(BookKeepEnergy[i], static_cast<double>(Nblock)), BookKeepEnergy[i]);
897 }
898 }
899 */
900
901 Atoms* HostSystem; //CPU pointers for storing Atoms (d_a in Simulations is the GPU Counterpart)//
902 Atoms TempSystem; //For temporary data storage//
903 void Copy_GPU_Data_To_Temp(Atoms GPU_System, size_t start, size_t size)
904 {
905 cudaMemcpy(TempSystem.pos, &GPU_System.pos[start], size * sizeof(double3), cudaMemcpyDeviceToHost);
906 cudaMemcpy(TempSystem.scale, &GPU_System.scale[start], size * sizeof(double), cudaMemcpyDeviceToHost);
907 cudaMemcpy(TempSystem.charge, &GPU_System.charge[start], size * sizeof(double), cudaMemcpyDeviceToHost);
908 cudaMemcpy(TempSystem.scaleCoul, &GPU_System.scaleCoul[start], size * sizeof(double), cudaMemcpyDeviceToHost);
909 cudaMemcpy(TempSystem.Type, &GPU_System.Type[start], size * sizeof(size_t), cudaMemcpyDeviceToHost);
910 cudaMemcpy(TempSystem.MolID, &GPU_System.MolID[start], size * sizeof(size_t), cudaMemcpyDeviceToHost);
911 }
912 MoveEnergy tempdeltaE;
913 MoveEnergy CreateMoldeltaE;
914 MoveEnergy deltaE;
915 double FrameworkEwald=0.0;
916 bool HasTailCorrection = false; // An overall flag for tail correction
917 bool ReadRestart = false; // Whether to use restart files //Zhao's note: this can be either RASPA-2-type Restart file or LAMMPS data file //
918 int RestartInputFileType = RASPA_RESTART; // can choose from: RASPA_RESTART or LAMMPS_DATA (see enum at the beginning of this file)
919 bool Read_BoxsizeRestart = false; // Whether to read boxsize from initial configuration file //
920 bool SingleSwap=false;
922 // DNN Related Variables //
924 //General DNN Flags//
925 bool UseDNNforHostGuest = false;
926 size_t TranslationRotationDNNReject=0;
927 size_t ReinsertionDNNReject=0;
928 size_t InsertionDNNReject=0;
929 size_t DeletionDNNReject=0;
930 size_t SingleSwapDNNReject=0;
931 //DNN and Host-Guest Drift//
932 double SingleMoveDNNDrift=0.0;
933 double ReinsertionDNNDrift=0.0;
934 double InsertionDNNDrift=0.0;
935 double DeletionDNNDrift=0.0;
936 double SingleSwapDNNDrift=0.0;
937 double DNNDrift = 100000.0;
938 double DNNEnergyConversion;
939 bool UseAllegro = false;
940 bool UseLCLin = false;
941 //###PATCH_ALLEGRO_VARIABLES###//
942
943 //###PATCH_LCLIN_VARIABLES###//
944 std::vector<std::string>ModelName; // Name (folder) of the stored model
945 std::vector<std::string>InputLayer; // Name of the input layer, run cli to get it
946 size_t* device_InverseIndexList; // device_pointer for knowing which pair of interaction is stored in where
947 bool* ConsiderThisAdsorbateAtom; // device pointer
948 double* device_Distances; // device_pointer for storing pair-wise distances//
949
950 std::vector<double2>EnergyAverage; // Booking-keeping Sums and Sums of squared values for energy
951 std::vector<bool> hasPartialCharge; // Whether this component has partial charge
952 std::vector<bool> hasfractionalMolecule; // Whether this component has fractional molecules
953 std::vector<LAMBDA> Lambda; // Vector of Lambda struct
954 std::vector<TMMC> Tmmc; // Vector of TMMC struct
955 std::vector<bool> rigid; // Determine if the component is rigid.
956 std::vector<double> ExclusionIntra; // For Ewald Summation, Intra Molecular exclusion
957 std::vector<double> ExclusionAtom; // For Ewald Summation, Atom-self exclusion
958 std::vector<std::string> MoleculeName; // Name of the molecule
959 std::vector<size_t> Moleculesize; // Number of Pseudo-Atoms in the molecule
960 std::vector<size_t> NumberOfMolecule_for_Component; // Number of Molecules for each component (including fractional molecule)
961 std::vector<size_t> Allocate_size; // Allocate size
962 std::vector<size_t> NumberOfCreateMolecules; // Number of Molecules needed to create for every component
963 std::vector<double> MolFraction; // Mol fraction of the component(excluding the framework)
964 std::vector<double> IdealRosenbluthWeight; // Ideal Rosenbluth weight
965 std::vector<double> FugacityCoeff; // Fugacity Coefficient //Zhao's note: We can use negative FugacityCoeff for flag of using EOS for the fugacity Coefficient
966
967 std::vector<Move_Statistics>Moves; // Move statistics: total, acceptance, etc.
968 std::vector<double3> MaxTranslation;
969 std::vector<double3> MaxRotation;
970 std::vector<double3> MaxSpecialRotation;
971 std::vector<double>Tc; // Critical Temperature of the component
972 std::vector<double>Pc; // Critical Pressure of the component
973 std::vector<double>Accentric; // Accentric Factor of the component
974 std::vector<Tail>TailCorrection; // Tail Correction
975 std::vector<double>MolecularWeight; // Molecular Weight of the component
976 ForceField FF;
977 PseudoAtomDefinitions PseudoAtoms;
978 std::vector<size_t>NumberOfPseudoAtoms; // NumberOfPseudoAtoms
979 std::vector<std::vector<int2>>NumberOfPseudoAtomsForSpecies; // NumberOfPseudoAtomsForSpecies
980 std::vector<std::complex<double>> eik_xy;
981 std::vector<std::complex<double>> eik_x;
982 std::vector<std::complex<double>> eik_y;
983 std::vector<std::complex<double>> eik_z;
984 std::vector<std::complex<double>> AdsorbateEik; // Stored Ewald Vectors for Adsorbate
985 std::vector<std::complex<double>> FrameworkEik; // Stored Ewald Vectors for Framework
986 std::vector<std::complex<double>> tempEik; // Ewald Vector for temporary storage
987 size_t MatchMoleculeNameToComponentID(std::string Name)
988 {
989 for(size_t i = 0; i < MoleculeName.size(); i++)
990 if(MoleculeName[i] == Name)
991 {
992 return i;
993 }
994 throw std::runtime_error("CANNOT find Molecule Names match " + Name + " !!!! CHECK YOUR FILE!");
995 }
996 void UpdatePseudoAtoms(int MoveType, size_t component)
997 {
998 switch(MoveType)
999 {
1000 case INSERTION: case SINGLE_INSERTION: case CBCF_INSERTION:
1001 {
1002 for(size_t i = 0; i < NumberOfPseudoAtomsForSpecies[component].size(); i++)
1003 {
1004 size_t type = NumberOfPseudoAtomsForSpecies[component][i].x; size_t Num = NumberOfPseudoAtomsForSpecies[component][i].y;
1005 NumberOfPseudoAtoms[type] += Num;
1006 }
1007 break;
1008 }
1009 case DELETION: case SINGLE_DELETION: case CBCF_DELETION:
1010 {
1011 for(size_t i = 0; i < NumberOfPseudoAtomsForSpecies[component].size(); i++)
1012 {
1013 size_t type = NumberOfPseudoAtomsForSpecies[component][i].x; size_t Num = NumberOfPseudoAtomsForSpecies[component][i].y;
1014 NumberOfPseudoAtoms[type] -= Num;
1015 }
1016 break;
1017 }
1018 case TRANSLATION: case ROTATION: case REINSERTION: case CBCF_LAMBDACHANGE:
1019 break;
1020 }
1021 }
1022};
1023
1024
1025
1026struct Simulations //For multiple simulations//
1027{
1028 Atoms* d_a; // Pointer For Atom Data in the Simulation Box //
1029 Atoms Old; // Temporary data storage for Old Configuration //
1030 Atoms New; // Temporary data storage for New Configuration //
1031 int2* ExcludeList; // Atoms to exclude during energy calculations: x: component, y: molecule-ID (may need to add z and make it int3, z: atom-ID)
1032 double* Blocksum; // Block sums for partial reduction //
1033 bool* device_flag; // flags for overlaps on the device //
1034 size_t start_position; // Start position for reading data in d_a when proposing a trial position for moves //
1035 size_t Nblocks; // Number of blocks for energy calculation //
1036 size_t TotalAtoms; // Number of Atoms in total for this simulation //
1037 bool AcceptedFlag; // Acceptance flag for every simulation //
1038 Boxsize Box; // Each simulation (system) has its own box //
1039};
1040
1041
1042
1044{
1045 bool UseGPUReduction; // For calculating the energies for each bead
1046 bool Useflag; // For using flags (for skipping reduction)
1047 size_t NumberWidomTrials; // Number of Trial Positions for the first bead //
1048 size_t NumberWidomTrialsOrientations;// Number of Trial Orientations
1049 size_t WidomFirstBeadAllocatesize; //space allocated for WidomFirstBeadResult
1050};
1051
1053{
1054 double3* host_random;
1055 double3* device_random;
1056 size_t randomsize;
1057 size_t offset={0};
1058 size_t Rounds={0};
1059 void ResetRandom()
1060 {
1061 offset = 0;
1062 for (size_t i = 0; i < randomsize; i++)
1063 {
1064 host_random[i].x = Get_Uniform_Random();
1065 host_random[i].y = Get_Uniform_Random();
1066 host_random[i].z = Get_Uniform_Random();
1067 }
1068
1069 for(size_t i = randomsize * 3; i < 1000000; i++) Get_Uniform_Random();
1070
1071 cudaMemcpy(device_random, host_random, randomsize * sizeof(double3), cudaMemcpyHostToDevice);
1072 Rounds ++;
1073 }
1074 void Check(size_t change)
1075 {
1076 if((offset + change) >= randomsize) ResetRandom();
1077 }
1078 void Update(size_t change)
1079 {
1080 offset += change;
1081 }
1082};
Definition data_struct.h:746
Definition data_struct.h:819
Definition data_struct.h:46
Definition data_struct.h:843
Definition data_struct.h:39
Definition data_struct.h:759
Definition data_struct.h:794
Definition data_struct.h:61
Definition data_struct.h:73
Definition data_struct.h:615
Definition data_struct.h:416
Definition data_struct.h:811
Definition data_struct.h:767
Definition data_struct.h:1053
Definition data_struct.h:407
Definition data_struct.h:1027
Definition data_struct.h:573
Definition data_struct.h:106
Definition data_struct.h:607
Definition data_struct.h:52
Definition data_struct.h:1044