1 |
|
#include <math.h> |
2 |
|
|
3 |
|
#include "Atom.hpp" |
4 |
+ |
#include "DirectionalAtom.hpp" |
5 |
|
#include "simError.h" |
6 |
+ |
#include "MatVec3.h" |
7 |
|
|
6 |
– |
|
7 |
– |
|
8 |
|
void DirectionalAtom::zeroForces() { |
9 |
|
if( hasCoords ){ |
10 |
< |
frc[offsetX] = 0.0; |
11 |
< |
frc[offsetY] = 0.0; |
12 |
< |
frc[offsetZ] = 0.0; |
10 |
> |
|
11 |
> |
Atom::zeroForces(); |
12 |
|
|
13 |
|
trq[offsetX] = 0.0; |
14 |
|
trq[offsetY] = 0.0; |
35 |
|
&trq, |
36 |
|
&Amat, |
37 |
|
&mu, |
38 |
< |
&ul ); |
38 |
> |
&ul); |
39 |
|
} |
40 |
|
else{ |
41 |
|
sprintf( painCave.errMsg, |
47 |
|
|
48 |
|
hasCoords = true; |
49 |
|
|
51 |
– |
*mu = myMu; |
52 |
– |
|
50 |
|
} |
51 |
|
|
55 |
– |
double DirectionalAtom::getMu( void ) { |
56 |
– |
|
57 |
– |
if( hasCoords ){ |
58 |
– |
return *mu; |
59 |
– |
} |
60 |
– |
else{ |
61 |
– |
return myMu; |
62 |
– |
} |
63 |
– |
} |
64 |
– |
|
65 |
– |
void DirectionalAtom::setMu( double the_mu ) { |
66 |
– |
|
67 |
– |
if( hasCoords ){ |
68 |
– |
*mu = the_mu; |
69 |
– |
myMu = the_mu; |
70 |
– |
} |
71 |
– |
else{ |
72 |
– |
myMu = the_mu; |
73 |
– |
} |
74 |
– |
} |
75 |
– |
|
52 |
|
void DirectionalAtom::setA( double the_A[3][3] ){ |
53 |
|
|
54 |
|
if( hasCoords ){ |
68 |
|
} |
69 |
|
} |
70 |
|
|
71 |
< |
void DirectionalAtom::setI( double the_I[3][3] ){ |
71 |
> |
void DirectionalAtom::setI( double the_I[3][3] ){ |
72 |
|
|
73 |
|
Ixx = the_I[0][0]; Ixy = the_I[0][1]; Ixz = the_I[0][2]; |
74 |
|
Iyx = the_I[1][0]; Iyy = the_I[1][1]; Iyz = the_I[1][2]; |
158 |
|
|
159 |
|
void DirectionalAtom::getU( double the_u[3] ){ |
160 |
|
|
161 |
< |
the_u[0] = sux; |
162 |
< |
the_u[1] = suy; |
163 |
< |
the_u[2] = suz; |
164 |
< |
|
161 |
> |
the_u[0] = sU[2][0]; |
162 |
> |
the_u[1] = sU[2][1]; |
163 |
> |
the_u[2] = sU[2][2]; |
164 |
> |
|
165 |
|
this->body2Lab( the_u ); |
166 |
|
} |
167 |
|
|
223 |
|
} |
224 |
|
} |
225 |
|
|
226 |
+ |
void DirectionalAtom::setUnitFrameFromEuler(double phi, |
227 |
+ |
double theta, |
228 |
+ |
double psi) { |
229 |
|
|
230 |
+ |
double myA[3][3]; |
231 |
+ |
double uFrame[3][3]; |
232 |
+ |
double len; |
233 |
+ |
int i, j; |
234 |
+ |
|
235 |
+ |
myA[0][0] = (cos(phi) * cos(psi)) - (sin(phi) * cos(theta) * sin(psi)); |
236 |
+ |
myA[0][1] = (sin(phi) * cos(psi)) + (cos(phi) * cos(theta) * sin(psi)); |
237 |
+ |
myA[0][2] = sin(theta) * sin(psi); |
238 |
+ |
|
239 |
+ |
myA[1][0] = -(cos(phi) * sin(psi)) - (sin(phi) * cos(theta) * cos(psi)); |
240 |
+ |
myA[1][1] = -(sin(phi) * sin(psi)) + (cos(phi) * cos(theta) * cos(psi)); |
241 |
+ |
myA[1][2] = sin(theta) * cos(psi); |
242 |
+ |
|
243 |
+ |
myA[2][0] = sin(phi) * sin(theta); |
244 |
+ |
myA[2][1] = -cos(phi) * sin(theta); |
245 |
+ |
myA[2][2] = cos(theta); |
246 |
+ |
|
247 |
+ |
// Make the unit Frame: |
248 |
+ |
|
249 |
+ |
for (i=0; i < 3; i++) |
250 |
+ |
for (j=0; j < 3; j++) |
251 |
+ |
uFrame[i][j] = 0.0; |
252 |
+ |
|
253 |
+ |
for (i=0; i < 3; i++) |
254 |
+ |
uFrame[i][i] = 1.0; |
255 |
+ |
|
256 |
+ |
// rotate by the given rotation matrix: |
257 |
+ |
|
258 |
+ |
matMul3(myA, uFrame, sU); |
259 |
+ |
|
260 |
+ |
// renormalize column vectors: |
261 |
+ |
|
262 |
+ |
for (i=0; i < 3; i++) { |
263 |
+ |
len = 0.0; |
264 |
+ |
for (j = 0; j < 3; j++) { |
265 |
+ |
len += sU[i][j]*sU[i][j]; |
266 |
+ |
} |
267 |
+ |
len = sqrt(len); |
268 |
+ |
for (j = 0; j < 3; j++) { |
269 |
+ |
sU[i][j] /= len; |
270 |
+ |
} |
271 |
+ |
} |
272 |
+ |
|
273 |
+ |
// sU now contains the coordinates of the 'special' frame; |
274 |
+ |
|
275 |
+ |
} |
276 |
+ |
|
277 |
|
void DirectionalAtom::setEuler( double phi, double theta, double psi ){ |
278 |
|
|
279 |
|
if( hasCoords ){ |
326 |
|
|
327 |
|
} |
328 |
|
|
329 |
+ |
void DirectionalAtom::rotateBy( double by_A[3][3]) { |
330 |
+ |
|
331 |
+ |
// Check this |
332 |
+ |
|
333 |
+ |
double r00, r01, r02, r10, r11, r12, r20, r21, r22; |
334 |
+ |
|
335 |
+ |
if( hasCoords ){ |
336 |
+ |
|
337 |
+ |
r00 = by_A[0][0]*Amat[Axx] + by_A[0][1]*Amat[Ayx] + by_A[0][2]*Amat[Azx]; |
338 |
+ |
r01 = by_A[0][0]*Amat[Axy] + by_A[0][1]*Amat[Ayy] + by_A[0][2]*Amat[Azy]; |
339 |
+ |
r02 = by_A[0][0]*Amat[Axz] + by_A[0][1]*Amat[Ayz] + by_A[0][2]*Amat[Azz]; |
340 |
+ |
|
341 |
+ |
r10 = by_A[1][0]*Amat[Axx] + by_A[1][1]*Amat[Ayx] + by_A[1][2]*Amat[Azx]; |
342 |
+ |
r11 = by_A[1][0]*Amat[Axy] + by_A[1][1]*Amat[Ayy] + by_A[1][2]*Amat[Azy]; |
343 |
+ |
r12 = by_A[1][0]*Amat[Axz] + by_A[1][1]*Amat[Ayz] + by_A[1][2]*Amat[Azz]; |
344 |
+ |
|
345 |
+ |
r20 = by_A[2][0]*Amat[Axx] + by_A[2][1]*Amat[Ayx] + by_A[2][2]*Amat[Azx]; |
346 |
+ |
r21 = by_A[2][0]*Amat[Axy] + by_A[2][1]*Amat[Ayy] + by_A[2][2]*Amat[Azy]; |
347 |
+ |
r22 = by_A[2][0]*Amat[Axz] + by_A[2][1]*Amat[Ayz] + by_A[2][2]*Amat[Azz]; |
348 |
+ |
|
349 |
+ |
Amat[Axx] = r00; Amat[Axy] = r01; Amat[Axz] = r02; |
350 |
+ |
Amat[Ayx] = r10; Amat[Ayy] = r11; Amat[Ayz] = r12; |
351 |
+ |
Amat[Azx] = r20; Amat[Azy] = r21; Amat[Azz] = r22; |
352 |
+ |
|
353 |
+ |
} |
354 |
+ |
else{ |
355 |
+ |
|
356 |
+ |
sprintf( painCave.errMsg, |
357 |
+ |
"Attempt to rotate frame for atom %d before coords set.\n", |
358 |
+ |
index ); |
359 |
+ |
painCave.isFatal = 1; |
360 |
+ |
simError(); |
361 |
+ |
} |
362 |
+ |
|
363 |
+ |
} |
364 |
+ |
|
365 |
+ |
|
366 |
|
void DirectionalAtom::body2Lab( double r[3] ){ |
367 |
|
|
368 |
|
double rb[3]; // the body frame vector |
389 |
|
void DirectionalAtom::updateU( void ){ |
390 |
|
|
391 |
|
if( hasCoords ){ |
392 |
< |
ul[offsetX] = (Amat[Axx] * sux) + (Amat[Ayx] * suy) + (Amat[Azx] * suz); |
393 |
< |
ul[offsetY] = (Amat[Axy] * sux) + (Amat[Ayy] * suy) + (Amat[Azy] * suz); |
394 |
< |
ul[offsetZ] = (Amat[Axz] * sux) + (Amat[Ayz] * suy) + (Amat[Azz] * suz); |
392 |
> |
ul[offsetX] = (Amat[Axx] * sU[2][0]) + |
393 |
> |
(Amat[Ayx] * sU[2][1]) + (Amat[Azx] * sU[2][2]); |
394 |
> |
ul[offsetY] = (Amat[Axy] * sU[2][0]) + |
395 |
> |
(Amat[Ayy] * sU[2][1]) + (Amat[Azy] * sU[2][2]); |
396 |
> |
ul[offsetZ] = (Amat[Axz] * sU[2][0]) + |
397 |
> |
(Amat[Ayz] * sU[2][1]) + (Amat[Azz] * sU[2][2]); |
398 |
|
} |
399 |
|
else{ |
400 |
|
|
495 |
|
ephi[0] = 0.0; |
496 |
|
ephi[1] = 0.0; |
497 |
|
ephi[2] = 1.0; |
498 |
< |
etheta[0] = -sphi; |
499 |
< |
etheta[1] = cphi; |
498 |
> |
|
499 |
> |
etheta[0] = cphi; |
500 |
> |
etheta[1] = sphi; |
501 |
|
etheta[2] = 0.0; |
435 |
– |
epsi[0] = ctheta * cphi; |
436 |
– |
epsi[1] = ctheta * sphi; |
437 |
– |
epsi[2] = -stheta; |
502 |
|
|
503 |
+ |
epsi[0] = stheta * cphi; |
504 |
+ |
epsi[1] = stheta * sphi; |
505 |
+ |
epsi[2] = ctheta; |
506 |
+ |
|
507 |
|
for (int j = 0 ; j<3; j++) |
508 |
|
grad[j] = frc[j]; |
509 |
|
|
510 |
+ |
grad[3] = 0; |
511 |
+ |
grad[4] = 0; |
512 |
+ |
grad[5] = 0; |
513 |
+ |
|
514 |
|
for (int j = 0; j < 3; j++ ) { |
515 |
|
|
516 |
|
grad[3] += trq[j]*ephi[j]; |
521 |
|
|
522 |
|
} |
523 |
|
|
524 |
< |
|
524 |
> |
/** |
525 |
> |
* getEulerAngles computes a set of Euler angle values consistent |
526 |
> |
* with an input rotation matrix. They are returned in the following |
527 |
> |
* order: |
528 |
> |
* myEuler[0] = phi; |
529 |
> |
* myEuler[1] = theta; |
530 |
> |
* myEuler[2] = psi; |
531 |
> |
*/ |
532 |
|
void DirectionalAtom::getEulerAngles(double myEuler[3]) { |
533 |
|
|
534 |
< |
// getEulerAngles computes a set of Euler angle values consistent |
535 |
< |
// with an input rotation matrix. They are returned in the following |
536 |
< |
// order: |
537 |
< |
// myEuler[0] = phi; |
538 |
< |
// myEuler[1] = theta; |
460 |
< |
// myEuler[2] = psi; |
534 |
> |
// We use so-called "x-convention", which is the most common definition. |
535 |
> |
// In this convention, the rotation given by Euler angles (phi, theta, psi), where the first |
536 |
> |
// rotation is by an angle phi about the z-axis, the second is by an angle |
537 |
> |
// theta (0 <= theta <= 180)about the x-axis, and thethird is by an angle psi about the |
538 |
> |
//z-axis (again). |
539 |
|
|
540 |
+ |
|
541 |
|
double phi,theta,psi,eps; |
542 |
< |
double pi; |
464 |
< |
double cphi,ctheta,cpsi; |
465 |
< |
double sphi,stheta,spsi; |
466 |
< |
double b[3]; |
467 |
< |
int flip[3]; |
542 |
> |
double ctheta,stheta; |
543 |
|
|
544 |
|
// set the tolerance for Euler angles and rotation elements |
545 |
|
|
546 |
|
eps = 1.0e-8; |
472 |
– |
|
473 |
– |
// get a trial value of theta from a single rotation element |
474 |
– |
|
475 |
– |
theta = asin(min(1.0,max(-1.0,-Amat[Axz]))); |
476 |
– |
ctheta = cos(theta); |
477 |
– |
stheta = -Amat[Axz]; |
478 |
– |
|
479 |
– |
// set the phi/psi difference when theta is either 90 or -90 |
480 |
– |
|
481 |
– |
if (fabs(ctheta) <= eps) { |
482 |
– |
phi = 0.0; |
483 |
– |
if (fabs(Amat[Azx]) < eps) { |
484 |
– |
psi = asin(min(1.0,max(-1.0,-Amat[Ayx]/Amat[Axz]))); |
485 |
– |
} else { |
486 |
– |
if (fabs(Amat[Ayx]) < eps) { |
487 |
– |
psi = acos(min(1.0,max(-1.0,-Amat[Azx]/Amat[Axz]))); |
488 |
– |
} else { |
489 |
– |
psi = atan(Amat[Ayx]/Amat[Azx]); |
490 |
– |
} |
491 |
– |
} |
492 |
– |
} |
547 |
|
|
548 |
< |
// set the phi and psi values for all other theta values |
548 |
> |
theta = acos(min(1.0,max(-1.0,Amat[Azz]))); |
549 |
> |
ctheta = Amat[Azz]; |
550 |
> |
stheta = sqrt(1.0 - ctheta * ctheta); |
551 |
> |
|
552 |
> |
// when sin(theta) is close to 0, we need to consider singularity |
553 |
> |
// In this case, we can assign an arbitary value to phi (or psi), and then determine |
554 |
> |
// the psi (or phi) or vice-versa. We'll assume that phi always gets the rotation, and psi is 0 |
555 |
> |
// in cases of singularity. |
556 |
> |
// we use atan2 instead of atan, since atan2 will give us -Pi to Pi. |
557 |
> |
// Since 0 <= theta <= 180, sin(theta) will be always non-negative. Therefore, it never |
558 |
> |
// change the sign of both of the parameters passed to atan2. |
559 |
|
|
560 |
< |
else { |
561 |
< |
if (fabs(Amat[Axx]) < eps) { |
562 |
< |
phi = asin(min(1.0,max(-1.0,Amat[Axy]/ctheta))); |
499 |
< |
} else { |
500 |
< |
if (fabs(Amat[Axy]) < eps) { |
501 |
< |
phi = acos(min(1.0,max(-1.0,Amat[Axx]/ctheta))); |
502 |
< |
} else { |
503 |
< |
phi = atan(Amat[Axy]/Amat[Axx]); |
504 |
< |
} |
505 |
< |
} |
506 |
< |
if (fabs(Amat[Azz]) < eps) { |
507 |
< |
psi = asin(min(1.0,max(-1.0,Amat[Ayz]/ctheta))); |
508 |
< |
} else { |
509 |
< |
if (fabs(Amat[Ayz]) < eps) { |
510 |
< |
psi = acos(min(1.0,max(-1.0,Amat[Azz]/ctheta))); |
511 |
< |
} |
512 |
< |
psi = atan(Amat[Ayz]/Amat[Azz]); |
513 |
< |
} |
560 |
> |
if (fabs(stheta) <= eps){ |
561 |
> |
psi = 0.0; |
562 |
> |
phi = atan2(-Amat[Ayx], Amat[Axx]); |
563 |
|
} |
564 |
+ |
// we only have one unique solution |
565 |
+ |
else{ |
566 |
+ |
phi = atan2(Amat[Azx], -Amat[Azy]); |
567 |
+ |
psi = atan2(Amat[Axz], Amat[Ayz]); |
568 |
+ |
} |
569 |
|
|
570 |
< |
// find sine and cosine of the trial phi and psi values |
570 |
> |
//wrap phi and psi, make sure they are in the range from 0 to 2*Pi |
571 |
> |
//if (phi < 0) |
572 |
> |
// phi += M_PI; |
573 |
|
|
574 |
< |
cphi = cos(phi); |
575 |
< |
sphi = sin(phi); |
520 |
< |
cpsi = cos(psi); |
521 |
< |
spsi = sin(psi); |
574 |
> |
//if (psi < 0) |
575 |
> |
// psi += M_PI; |
576 |
|
|
577 |
< |
// reconstruct the diagonal of the rotation matrix |
577 |
> |
myEuler[0] = phi; |
578 |
> |
myEuler[1] = theta; |
579 |
> |
myEuler[2] = psi; |
580 |
> |
|
581 |
> |
return; |
582 |
> |
} |
583 |
|
|
584 |
< |
b[0] = ctheta * cphi; |
585 |
< |
b[1] = spsi*stheta*sphi + cpsi*cphi; |
586 |
< |
b[2] = ctheta * cpsi; |
587 |
< |
|
529 |
< |
// compare the correct matrix diagonal to rebuilt diagonal |
530 |
< |
|
531 |
< |
for (int i = 0; i < 3; i++) { |
532 |
< |
flip[i] = 0; |
533 |
< |
if (fabs(Amat[3*i + i] - b[i]) > eps) flip[i] = 1; |
584 |
> |
double DirectionalAtom::getZangle( ){ |
585 |
> |
|
586 |
> |
if( hasCoords ){ |
587 |
> |
return zAngle; |
588 |
|
} |
589 |
+ |
else{ |
590 |
+ |
|
591 |
+ |
sprintf( painCave.errMsg, |
592 |
+ |
"Attempt to get zAngle for atom %d before coords set.\n", |
593 |
+ |
index ); |
594 |
+ |
painCave.isFatal = 1; |
595 |
+ |
simError(); |
596 |
+ |
return 0; |
597 |
+ |
} |
598 |
+ |
} |
599 |
|
|
600 |
< |
// alter Euler angles to get correct rotation matrix values |
600 |
> |
void DirectionalAtom::setZangle( double zAng ){ |
601 |
|
|
602 |
< |
if (flip[0] && flip[1]) phi = phi - copysign(M_PI,phi); |
603 |
< |
if (flip[0] && flip[2]) theta = -theta + copysign(M_PI, theta); |
604 |
< |
if (flip[1] && flip[2]) psi = psi - copysign(M_PI, psi); |
602 |
> |
if( hasCoords ){ |
603 |
> |
zAngle = zAng; |
604 |
> |
} |
605 |
> |
else{ |
606 |
> |
|
607 |
> |
sprintf( painCave.errMsg, |
608 |
> |
"Attempt to set zAngle for atom %d before coords set.\n", |
609 |
> |
index ); |
610 |
> |
painCave.isFatal = 1; |
611 |
> |
simError(); |
612 |
> |
} |
613 |
> |
} |
614 |
|
|
615 |
< |
myEuler[0] = phi; |
616 |
< |
myEuler[1] = theta; |
617 |
< |
myEuler[2] = psi; |
618 |
< |
|
619 |
< |
return; |
615 |
> |
void DirectionalAtom::addZangle( double zAng ){ |
616 |
> |
|
617 |
> |
if( hasCoords ){ |
618 |
> |
zAngle += zAng; |
619 |
> |
} |
620 |
> |
else{ |
621 |
> |
|
622 |
> |
sprintf( painCave.errMsg, |
623 |
> |
"Attempt to add zAngle to atom %d before coords set.\n", |
624 |
> |
index ); |
625 |
> |
painCave.isFatal = 1; |
626 |
> |
simError(); |
627 |
> |
} |
628 |
|
} |
629 |
|
|
630 |
|
double DirectionalAtom::max(double x, double y) { |