5__global__
void AllocateMoreSpace_CopyToTemp(
Atoms* d_a,
Atoms temp,
size_t Space,
size_t SelectedComponent)
7 for(
size_t i = 0; i < Space; i++)
9 temp.pos[i] = d_a[SelectedComponent].pos[i];
10 temp.scale[i] = d_a[SelectedComponent].scale[i];
11 temp.charge[i] = d_a[SelectedComponent].charge[i];
12 temp.scaleCoul[i] = d_a[SelectedComponent].scaleCoul[i];
13 temp.Type[i] = d_a[SelectedComponent].Type[i];
14 temp.MolID[i] = d_a[SelectedComponent].MolID[i];
18__global__
void AllocateMoreSpace_CopyBack(
Atoms* d_a,
Atoms temp,
size_t Space,
size_t Newspace,
size_t SelectedComponent)
20 d_a[SelectedComponent].Allocate_size = Newspace;
21 for(
size_t i = 0; i < Space; i++)
23 d_a[SelectedComponent].pos[i] = temp.pos[i];
24 d_a[SelectedComponent].scale[i] = temp.scale[i];
25 d_a[SelectedComponent].charge[i] = temp.charge[i];
26 d_a[SelectedComponent].scaleCoul[i] = temp.scaleCoul[i];
27 d_a[SelectedComponent].Type[i] = temp.Type[i];
28 d_a[SelectedComponent].MolID[i] = temp.MolID[i];
45void AllocateMoreSpace(
Atoms*& d_a,
size_t SelectedComponent,
Components& SystemComponents)
47 printf(
"Allocating more space on device\n");
50 size_t Copysize=SystemComponents.Allocate_size[SelectedComponent];
51 size_t Morespace = 1024;
52 size_t Newspace = Copysize+Morespace;
54 cudaMalloc(&temp.pos, Copysize *
sizeof(double3));
55 cudaMalloc(&temp.scale, Copysize *
sizeof(
double));
56 cudaMalloc(&temp.charge, Copysize *
sizeof(
double));
57 cudaMalloc(&temp.scaleCoul, Copysize *
sizeof(
double));
58 cudaMalloc(&temp.Type, Copysize *
sizeof(
size_t));
59 cudaMalloc(&temp.MolID, Copysize *
sizeof(
size_t));
61 AllocateMoreSpace_CopyToTemp<<<1,1>>>(d_a, temp, Copysize, SelectedComponent);
64 Atoms System[SystemComponents.Total_Components]; cudaMemcpy(System, d_a, SystemComponents.Total_Components *
sizeof(
Atoms), cudaMemcpyDeviceToHost);
66 cudaMalloc(&System[SelectedComponent].pos, Newspace *
sizeof(double3));
67 cudaMalloc(&System[SelectedComponent].scale, Newspace *
sizeof(
double));
68 cudaMalloc(&System[SelectedComponent].charge, Newspace *
sizeof(
double));
69 cudaMalloc(&System[SelectedComponent].scaleCoul, Newspace *
sizeof(
double));
70 cudaMalloc(&System[SelectedComponent].Type, Newspace *
sizeof(
size_t));
71 cudaMalloc(&System[SelectedComponent].MolID, Newspace *
sizeof(
size_t));
73 AllocateMoreSpace_CopyBack<<<1,1>>>(d_a, temp, Copysize, Newspace, SelectedComponent);
81static inline void Update_NumberOfMolecules(
Components& SystemComponents,
Atoms*& d_a,
size_t SelectedComponent,
int MoveType)
83 size_t Molsize = SystemComponents.Moleculesize[SelectedComponent];
88 case INSERTION:
case SINGLE_INSERTION:
case CBCF_INSERTION:
92 case DELETION:
case SINGLE_DELETION:
case CBCF_DELETION:
98 SystemComponents.NumberOfMolecule_for_Component[SelectedComponent] += NumMol;
99 SystemComponents.TotalNumberOfMolecules += NumMol;
102 size_t size = SystemComponents.Moleculesize[SelectedComponent] * SystemComponents.NumberOfMolecule_for_Component[SelectedComponent];
104 SystemComponents.UpdatePseudoAtoms(MoveType, SelectedComponent);
106 if(size > SystemComponents.Allocate_size[SelectedComponent])
108 AllocateMoreSpace(d_a, SelectedComponent, SystemComponents);
109 throw std::runtime_error(
"Need to allocate more space, not implemented\n");
113__global__
void Update_SINGLE_INSERTION_data(
Atoms* d_a,
Atoms New,
size_t SelectedComponent)
116 size_t Molsize = d_a[SelectedComponent].Molsize;
117 size_t UpdateLocation = d_a[SelectedComponent].size;
118 for(
size_t j = 0; j < Molsize; j++)
120 d_a[SelectedComponent].pos[UpdateLocation+j] = New.pos[j];
121 d_a[SelectedComponent].scale[UpdateLocation+j] = New.scale[j];
122 d_a[SelectedComponent].charge[UpdateLocation+j] = New.charge[j];
123 d_a[SelectedComponent].scaleCoul[UpdateLocation+j] = New.scaleCoul[j];
124 d_a[SelectedComponent].Type[UpdateLocation+j] = New.Type[j];
125 d_a[SelectedComponent].MolID[UpdateLocation+j] = New.MolID[j];
127 d_a[SelectedComponent].size += Molsize;
130__global__
void Update_deletion_data(
Atoms* d_a,
size_t SelectedComponent,
size_t UpdateLocation,
int Moleculesize,
size_t LastLocation)
132 size_t i = blockIdx.x * blockDim.x + threadIdx.x;
138 if(UpdateLocation != LastLocation)
140 for(
size_t i = 0; i < Moleculesize; i++)
142 d_a[SelectedComponent].pos[UpdateLocation+i] = d_a[SelectedComponent].pos[LastLocation+i];
143 d_a[SelectedComponent].scale[UpdateLocation+i] = d_a[SelectedComponent].scale[LastLocation+i];
144 d_a[SelectedComponent].charge[UpdateLocation+i] = d_a[SelectedComponent].charge[LastLocation+i];
145 d_a[SelectedComponent].scaleCoul[UpdateLocation+i] = d_a[SelectedComponent].scaleCoul[LastLocation+i];
146 d_a[SelectedComponent].Type[UpdateLocation+i] = d_a[SelectedComponent].Type[LastLocation+i];
154 d_a[SelectedComponent].size -= Moleculesize;
158__global__
void Update_insertion_data(
Atoms* d_a,
Atoms Mol,
Atoms NewMol,
size_t SelectedTrial,
size_t SelectedComponent,
size_t UpdateLocation,
int Moleculesize)
160 size_t i = blockIdx.x * blockDim.x + threadIdx.x;
163 if(Moleculesize == 1)
165 d_a[SelectedComponent].pos[UpdateLocation] = NewMol.pos[SelectedTrial];
166 d_a[SelectedComponent].scale[UpdateLocation] = NewMol.scale[SelectedTrial];
167 d_a[SelectedComponent].charge[UpdateLocation] = NewMol.charge[SelectedTrial];
168 d_a[SelectedComponent].scaleCoul[UpdateLocation] = NewMol.scaleCoul[SelectedTrial];
169 d_a[SelectedComponent].Type[UpdateLocation] = NewMol.Type[SelectedTrial];
170 d_a[SelectedComponent].MolID[UpdateLocation] = NewMol.MolID[SelectedTrial];
175 d_a[SelectedComponent].pos[UpdateLocation] = Mol.pos[0];
176 d_a[SelectedComponent].scale[UpdateLocation] = Mol.scale[0];
177 d_a[SelectedComponent].charge[UpdateLocation] = Mol.charge[0];
178 d_a[SelectedComponent].scaleCoul[UpdateLocation] = Mol.scaleCoul[0];
179 d_a[SelectedComponent].Type[UpdateLocation] = Mol.Type[0];
180 d_a[SelectedComponent].MolID[UpdateLocation] = Mol.MolID[0];
182 size_t chainsize = Moleculesize - 1;
183 for(
size_t j = 0; j < chainsize; j++)
185 size_t selectsize = SelectedTrial*chainsize+j;
186 d_a[SelectedComponent].pos[UpdateLocation+j+1] = NewMol.pos[selectsize];
187 d_a[SelectedComponent].scale[UpdateLocation+j+1] = NewMol.scale[selectsize];
188 d_a[SelectedComponent].charge[UpdateLocation+j+1] = NewMol.charge[selectsize];
189 d_a[SelectedComponent].scaleCoul[UpdateLocation+j+1] = NewMol.scaleCoul[selectsize];
190 d_a[SelectedComponent].Type[UpdateLocation+j+1] = NewMol.Type[selectsize];
191 d_a[SelectedComponent].MolID[UpdateLocation+j+1] = NewMol.MolID[selectsize];
199 d_a[SelectedComponent].size += Moleculesize;
207__global__
void update_translation_position(
Atoms* d_a,
Atoms NewMol,
size_t start_position,
size_t SelectedComponent)
209 size_t i = blockIdx.x * blockDim.x + threadIdx.x;
210 d_a[SelectedComponent].pos[start_position+i] = NewMol.pos[i];
211 d_a[SelectedComponent].scale[start_position+i] = NewMol.scale[i];
212 d_a[SelectedComponent].charge[start_position+i] = NewMol.charge[i];
213 d_a[SelectedComponent].scaleCoul[start_position+i] = NewMol.scaleCoul[i];
220static inline double GetPrefactor(
Components& SystemComponents,
Simulations& Sims,
size_t SelectedComponent,
int MoveType)
222 double MolFraction = SystemComponents.MolFraction[SelectedComponent];
223 double FugacityCoefficient = SystemComponents.FugacityCoeff[SelectedComponent];
224 double NumberOfMolecules =
static_cast<double>(SystemComponents.NumberOfMolecule_for_Component[SelectedComponent]);
227 if(SystemComponents.hasfractionalMolecule[SelectedComponent]){NumberOfMolecules-=1.0;}
228 if(NumberOfMolecules < 0.0) NumberOfMolecules = 0.0;
230 double preFactor = 0.0;
236 case INSERTION:
case SINGLE_INSERTION:
238 preFactor = SystemComponents.Beta * MolFraction * Sims.Box.Pressure * FugacityCoefficient * Sims.Box.Volume / (1.0+NumberOfMolecules);
241 case DELETION:
case SINGLE_DELETION:
243 preFactor = (NumberOfMolecules) / (SystemComponents.Beta * MolFraction * Sims.Box.Pressure * FugacityCoefficient * Sims.Box.Volume);
248 throw std::runtime_error(
"Sorry, but no IDENTITY_SWAP OPTION for now. That move uses its own function\n");
250 case TRANSLATION:
case ROTATION:
case SPECIAL_ROTATION:
262static inline void AcceptInsertion(
Components& SystemComponents,
Simulations& Sims,
size_t SelectedComponent,
size_t SelectedTrial,
bool noCharges,
int MoveType)
264 size_t UpdateLocation = SystemComponents.Moleculesize[SelectedComponent] * SystemComponents.NumberOfMolecule_for_Component[SelectedComponent];
267 if(MoveType == INSERTION)
269 Update_insertion_data<<<1,1>>>(Sims.d_a, Sims.Old, Sims.New, SelectedTrial, SelectedComponent, UpdateLocation, (int) SystemComponents.Moleculesize[SelectedComponent]);
271 else if(MoveType == SINGLE_INSERTION)
273 Update_SINGLE_INSERTION_data<<<1,1>>>(Sims.d_a, Sims.New, SelectedComponent);
275 Update_NumberOfMolecules(SystemComponents, Sims.d_a, SelectedComponent, INSERTION);
276 if(!noCharges && SystemComponents.hasPartialCharge[SelectedComponent])
278 Update_Ewald_Vector(Sims.Box,
false, SystemComponents, SelectedComponent);
282static inline void AcceptDeletion(
Components& SystemComponents,
Simulations& Sims,
size_t SelectedComponent,
size_t UpdateLocation,
size_t SelectedMol,
bool noCharges)
284 size_t LastMolecule = SystemComponents.NumberOfMolecule_for_Component[SelectedComponent]-1;
285 size_t LastLocation = LastMolecule*SystemComponents.Moleculesize[SelectedComponent];
286 Update_deletion_data<<<1,1>>>(Sims.d_a, SelectedComponent, UpdateLocation, (int) SystemComponents.Moleculesize[SelectedComponent], LastLocation);
288 Update_NumberOfMolecules(SystemComponents, Sims.d_a, SelectedComponent, DELETION);
289 if(!noCharges && SystemComponents.hasPartialCharge[SelectedComponent])
291 Update_Ewald_Vector(Sims.Box,
false, SystemComponents, SelectedComponent);
295 if((SystemComponents.hasfractionalMolecule[SelectedComponent])&&(LastMolecule == SystemComponents.Lambda[SelectedComponent].FractionalMoleculeID))
298 SystemComponents.Lambda[SelectedComponent].FractionalMoleculeID = SelectedMol;
306__device__
void Rotate_Quaternions(double3 &Vec, double3 RANDOM)
312 const double u = RANDOM.x;
313 const double v = RANDOM.y;
314 const double w = RANDOM.z;
315 const double pi=3.14159265358979323846;
317 const double q0 = sqrt(1-u) * std::sin(2*pi*v);
318 const double q1 = sqrt(1-u) * std::cos(2*pi*v);
319 const double q2 = sqrt(u) * std::sin(2*pi*w);
320 const double q3 = sqrt(u) * std::cos(2*pi*w);
323 const double a01=q0*q1;
const double a02=q0*q2;
const double a03=q0*q3;
324 const double a11=q1*q1;
const double a12=q1*q2;
const double a13=q1*q3;
325 const double a22=q2*q2;
const double a23=q2*q3;
const double a33=q3*q3;
327 rot[0]=1.0-2.0*(a22+a33);
328 rot[1]=2.0*(a12-a03);
329 rot[2]=2.0*(a13+a02);
330 rot[3]=2.0*(a12+a03);
331 rot[4]=1.0-2.0*(a11+a33);
332 rot[5]=2.0*(a23-a01);
333 rot[6]=2.0*(a13-a02);
334 rot[7]=2.0*(a23+a01);
335 rot[8]=1.0-2.0*(a11+a22);
336 const double r=Vec.x*rot[0*3+0] + Vec.y*rot[0*3+1] + Vec.z*rot[0*3+2];
337 const double s=Vec.x*rot[1*3+0] + Vec.y*rot[1*3+1] + Vec.z*rot[1*3+2];
338 const double c=Vec.x*rot[2*3+0] + Vec.y*rot[2*3+1] + Vec.z*rot[2*3+2];
342__device__
void RotationAroundAxis(double3* pos,
size_t i,
double theta, double3 Axis)
344 double w,s,c,rot[3*3];
350 rot[0*3+0]=(Axis.x)*(Axis.x)*w+c;
351 rot[0*3+1]=(Axis.x)*(Axis.y)*w+(Axis.z)*s;
352 rot[0*3+2]=(Axis.x)*(Axis.z)*w-(Axis.y)*s;
353 rot[1*3+0]=(Axis.x)*(Axis.y)*w-(Axis.z)*s;
354 rot[1*3+1]=(Axis.y)*(Axis.y)*w+c;
355 rot[1*3+2]=(Axis.y)*(Axis.z)*w+(Axis.x)*s;
356 rot[2*3+0]=(Axis.x)*(Axis.z)*w+(Axis.y)*s;
357 rot[2*3+1]=(Axis.y)*(Axis.z)*w-(Axis.x)*s;
358 rot[2*3+2]=(Axis.z)*(Axis.z)*w+c;
360 w=pos[i].x*rot[0*3+0]+pos[i].y*rot[0*3+1]+pos[i].z*rot[0*3+2];
361 s=pos[i].x*rot[1*3+0]+pos[i].y*rot[1*3+1]+pos[i].z*rot[1*3+2];
362 c=pos[i].x*rot[2*3+0]+pos[i].y*rot[2*3+1]+pos[i].z*rot[2*3+2];
368__global__
void get_new_position(
Simulations& Sim,
ForceField FF,
size_t start_position,
size_t SelectedComponent, double3 MaxChange, double3* RANDOM,
size_t index,
int MoveType)
370 const size_t i = blockIdx.x * blockDim.x + threadIdx.x;
371 const size_t real_pos = start_position + i;
373 const double3 pos = Sim.d_a[SelectedComponent].pos[real_pos];
374 const double scale = Sim.d_a[SelectedComponent].scale[real_pos];
375 const double charge = Sim.d_a[SelectedComponent].charge[real_pos];
376 const double scaleCoul = Sim.d_a[SelectedComponent].scaleCoul[real_pos];
377 const size_t Type = Sim.d_a[SelectedComponent].Type[real_pos];
378 const size_t MolID = Sim.d_a[SelectedComponent].MolID[real_pos];
384 Sim.New.pos[i] = pos + MaxChange * 2.0 * (RANDOM[index] - 0.5);
385 Sim.New.scale[i] = scale;
386 Sim.New.charge[i] = charge;
387 Sim.New.scaleCoul[i] = scaleCoul;
388 Sim.New.Type[i] = Type;
389 Sim.New.MolID[i] = MolID;
391 Sim.Old.pos[i] = pos;
392 Sim.Old.scale[i] = scale;
393 Sim.Old.charge[i] = charge;
394 Sim.Old.scaleCoul[i] = scaleCoul;
395 Sim.Old.Type[i] = Type;
396 Sim.Old.MolID[i] = MolID;
401 Sim.New.pos[i] = pos - Sim.d_a[SelectedComponent].pos[start_position];
402 const double3 Angle = MaxChange * 2.0 * (RANDOM[index] - 0.5);
404 RotationAroundAxis(Sim.New.pos, i, Angle.x, {1.0, 0.0, 0.0});
405 RotationAroundAxis(Sim.New.pos, i, Angle.y, {0.0, 1.0, 0.0});
406 RotationAroundAxis(Sim.New.pos, i, Angle.z, {0.0, 0.0, 1.0});
408 Sim.New.pos[i] += Sim.d_a[SelectedComponent].pos[start_position];
410 Sim.New.scale[i] = scale;
411 Sim.New.charge[i] = charge;
412 Sim.New.scaleCoul[i] = scaleCoul;
413 Sim.New.Type[i] = Type;
414 Sim.New.MolID[i] = MolID;
416 Sim.Old.pos[i] = pos;
417 Sim.Old.scale[i] = scale;
418 Sim.Old.charge[i] = charge;
419 Sim.Old.scaleCoul[i] = scaleCoul;
420 Sim.Old.Type[i] = Type;
421 Sim.Old.MolID[i] = MolID;
424 case SINGLE_INSERTION:
428 double3 BoxLength = {Sim.Box.Cell[0], Sim.Box.Cell[4], Sim.Box.Cell[8]};
429 double3 NEW_COM = BoxLength * RANDOM[index];
430 if(i == 0) Sim.New.pos[0] = NEW_COM;
433 double3 Vec = pos - Sim.d_a[SelectedComponent].pos[start_position];
434 Rotate_Quaternions(Vec, RANDOM[index + 1]);
435 Sim.New.pos[i] = Vec + NEW_COM;
437 Sim.New.scale[i] = scale;
438 Sim.New.charge[i] = charge;
439 Sim.New.scaleCoul[i] = scaleCoul;
440 Sim.New.Type[i] = Type;
441 Sim.New.MolID[i] = Sim.d_a[SelectedComponent].size / Sim.d_a[SelectedComponent].Molsize;
444 case SINGLE_DELETION:
446 Sim.Old.pos[i] = pos;
447 Sim.Old.scale[i] = scale;
448 Sim.Old.charge[i] = charge;
449 Sim.Old.scaleCoul[i] = scaleCoul;
450 Sim.Old.Type[i] = Type;
451 Sim.Old.MolID[i] = MolID;
454 case SPECIAL_ROTATION:
457 Sim.New.pos[i] = pos - Sim.d_a[SelectedComponent].pos[start_position];
459 const double3 Angle = MaxChange * 2.0 * (RANDOM[index] - 0.5);
464 Axis = Sim.d_a[SelectedComponent].pos[start_position + 1] - Sim.d_a[SelectedComponent].pos[start_position];
465 double norm = sqrt(dot(Axis, Axis));
470 RotationAroundAxis(Sim.New.pos, i, 3.0 * Angle.x, Axis);
471 Sim.New.pos[i] += Sim.d_a[SelectedComponent].pos[start_position];
473 Sim.New.scale[i] = scale;
474 Sim.New.charge[i] = charge;
475 Sim.New.scaleCoul[i] = scaleCoul;
476 Sim.New.Type[i] = Type;
477 Sim.New.MolID[i] = MolID;
479 Sim.Old.pos[i] = pos;
480 Sim.Old.scale[i] = scale;
481 Sim.Old.charge[i] = charge;
482 Sim.Old.scaleCoul[i] = scaleCoul;
483 Sim.Old.Type[i] = Type;
484 Sim.Old.MolID[i] = MolID;
488 Sim.device_flag[i] =
false;
495static inline void Update_Max_Translation(
Components& SystemComponents,
size_t Comp)
497 if(SystemComponents.Moves[Comp].TranslationTotal == 0)
return;
498 SystemComponents.Moves[Comp].TranslationAccRatio =
static_cast<double>(SystemComponents.Moves[Comp].TranslationAccepted)/SystemComponents.Moves[Comp].TranslationTotal;
500 if(SystemComponents.Moves[Comp].TranslationAccRatio > 0.5)
502 SystemComponents.MaxTranslation[Comp] *= 1.05;
506 SystemComponents.MaxTranslation[Comp] *= 0.95;
508 if(SystemComponents.MaxTranslation[Comp].x < 0.01) SystemComponents.MaxTranslation[Comp].x = 0.01;
509 if(SystemComponents.MaxTranslation[Comp].y < 0.01) SystemComponents.MaxTranslation[Comp].y = 0.01;
510 if(SystemComponents.MaxTranslation[Comp].z < 0.01) SystemComponents.MaxTranslation[Comp].z = 0.01;
512 if(SystemComponents.MaxTranslation[Comp].x > 5.0) SystemComponents.MaxTranslation[Comp].x = 5.0;
513 if(SystemComponents.MaxTranslation[Comp].y > 5.0) SystemComponents.MaxTranslation[Comp].y = 5.0;
514 if(SystemComponents.MaxTranslation[Comp].z > 5.0) SystemComponents.MaxTranslation[Comp].z = 5.0;
515 SystemComponents.Moves[Comp].TranslationAccepted = 0;
516 SystemComponents.Moves[Comp].TranslationTotal = 0;
519static inline void Update_Max_Rotation(
Components& SystemComponents,
size_t Comp)
521 if(SystemComponents.Moves[Comp].RotationTotal == 0)
return;
522 SystemComponents.Moves[Comp].RotationAccRatio =
static_cast<double>(SystemComponents.Moves[Comp].RotationAccepted)/SystemComponents.Moves[Comp].RotationTotal;
524 if(SystemComponents.Moves[Comp].RotationAccRatio > 0.5)
526 SystemComponents.MaxRotation[Comp] *= 1.05;
530 SystemComponents.MaxRotation[Comp] *= 0.95;
532 if(SystemComponents.MaxRotation[Comp].x < 0.01) SystemComponents.MaxRotation[Comp].x = 0.01;
533 if(SystemComponents.MaxRotation[Comp].y < 0.01) SystemComponents.MaxRotation[Comp].y = 0.01;
534 if(SystemComponents.MaxRotation[Comp].z < 0.01) SystemComponents.MaxRotation[Comp].z = 0.01;
536 if(SystemComponents.MaxRotation[Comp].x > 3.14) SystemComponents.MaxRotation[Comp].x = 3.14;
537 if(SystemComponents.MaxRotation[Comp].y > 3.14) SystemComponents.MaxRotation[Comp].y = 3.14;
538 if(SystemComponents.MaxRotation[Comp].z > 3.14) SystemComponents.MaxRotation[Comp].z = 3.14;
539 SystemComponents.Moves[Comp].RotationAccepted = 0;
540 SystemComponents.Moves[Comp].RotationTotal = 0;
543static inline void Update_Max_SpecialRotation(
Components& SystemComponents,
size_t Comp)
545 if(SystemComponents.Moves[Comp].SpecialRotationTotal == 0)
return;
546 SystemComponents.Moves[Comp].SpecialRotationAccRatio =
static_cast<double>(SystemComponents.Moves[Comp].SpecialRotationAccepted)/SystemComponents.Moves[Comp].SpecialRotationTotal;
548 if(SystemComponents.Moves[Comp].SpecialRotationAccRatio > 0.5)
550 SystemComponents.MaxSpecialRotation[Comp] *= 1.05;
554 SystemComponents.MaxSpecialRotation[Comp] *= 0.95;
556 if(SystemComponents.MaxSpecialRotation[Comp].x < 0.01) SystemComponents.MaxSpecialRotation[Comp].x = 0.01;
557 if(SystemComponents.MaxSpecialRotation[Comp].y < 0.01) SystemComponents.MaxSpecialRotation[Comp].y = 0.01;
558 if(SystemComponents.MaxSpecialRotation[Comp].z < 0.01) SystemComponents.MaxSpecialRotation[Comp].z = 0.01;
560 if(SystemComponents.MaxSpecialRotation[Comp].x > 3.14) SystemComponents.MaxSpecialRotation[Comp].x = 3.14;
561 if(SystemComponents.MaxSpecialRotation[Comp].y > 3.14) SystemComponents.MaxSpecialRotation[Comp].y = 3.14;
562 if(SystemComponents.MaxSpecialRotation[Comp].z > 3.14) SystemComponents.MaxSpecialRotation[Comp].z = 3.14;
563 SystemComponents.Moves[Comp].SpecialRotationAccepted = 0;
564 SystemComponents.Moves[Comp].SpecialRotationTotal = 0;
Definition data_struct.h:746
Definition data_struct.h:843
Definition data_struct.h:794
Definition data_struct.h:1027