18#include "math_eigen_impl.h"
53 for (i = 0; i < size(); i++) {
67 if (data.size() > 0) {
94 data.assign(data.size(), T(0.0));
97 inline size_t size()
const
102 inline void resize(
size_t const n)
112 inline T & operator [] (
size_t const i) {
116 inline T
const & operator [] (
size_t const i)
const {
120 inline static void check_sizes(vector1d<T>
const &v1, vector1d<T>
const &v2)
122 if (v1.size() != v2.size()) {
123 cvm::error(
"Error: trying to perform an operation between vectors of different sizes, "+
128 inline void operator += (vector1d<T>
const &v)
130 check_sizes(*
this, v);
132 for (i = 0; i < this->size(); i++) {
137 inline void operator -= (vector1d<T>
const &v)
139 check_sizes(*
this, v);
141 for (i = 0; i < this->size(); i++) {
149 for (i = 0; i < this->size(); i++) {
157 for (i = 0; i < this->size(); i++) {
162 inline friend vector1d<T> operator + (vector1d<T>
const &v1,
163 vector1d<T>
const &v2)
165 check_sizes(v1.size(), v2.size());
166 vector1d<T> result(v1.size());
168 for (i = 0; i < v1.size(); i++) {
169 result[i] = v1[i] + v2[i];
174 inline friend vector1d<T> operator - (vector1d<T>
const &v1,
175 vector1d<T>
const &v2)
177 check_sizes(v1.size(), v2.size());
178 vector1d<T> result(v1.size());
180 for (i = 0; i < v1.size(); i++) {
181 result[i] = v1[i] - v2[i];
186 inline friend vector1d<T> operator * (vector1d<T>
const &v,
cvm::real a)
188 vector1d<T> result(v.size());
190 for (i = 0; i < v.size(); i++) {
191 result[i] = v[i] * a;
196 inline friend vector1d<T> operator * (
cvm::real a, vector1d<T>
const &v)
201 inline friend vector1d<T> operator / (vector1d<T>
const &v,
cvm::real a)
203 vector1d<T> result(v.size());
205 for (i = 0; i < v.size(); i++) {
206 result[i] = v[i] / a;
214 check_sizes(v1.size(), v2.size());
217 for (i = 0; i < v1.size(); i++) {
218 prod += v1[i] * v2[i];
228 for (i = 0; i < this->size(); i++) {
229 result += (*this)[i] * (*this)[i];
243 for (i = 0; i < this->size(); i++) {
244 result += (*this)[i];
252 if ((i2 < i1) || (i2 >= this->size())) {
253 cvm::error(
"Error: trying to slice a vector using incorrect boundaries.\n");
257 for (i = 0; i < (i2 - i1); i++) {
258 result[i] = (*this)[i1+i];
267 if ((i2 < i1) || (i2 >= this->size())) {
268 cvm::error(
"Error: trying to slice a vector using incorrect boundaries.\n");
271 for (i = 0; i < (i2 - i1); i++) {
272 (*this)[i1+i] = v[i];
280 return real_width*(this->size()) + 3*(this->size()-1) + 4;
283 inline friend std::istream & operator >> (std::istream &is,
286 if (v.size() == 0)
return is;
287 std::streampos
const start_pos = is.tellg();
289 if ( !(is >> sep) || !(sep ==
'(') ) {
291 is.seekg(start_pos, std::ios::beg);
292 is.setstate(std::ios::failbit);
296 while ( (is >> v[count]) &&
297 (count < (v.size()-1) ? ((is >> sep) && (sep ==
',')) :
true) ) {
298 if (++count == v.size())
break;
300 if (count < v.size()) {
302 is.seekg(start_pos, std::ios::beg);
303 is.setstate(std::ios::failbit);
308 inline friend std::ostream & operator << (std::ostream &os,
311 std::streamsize
const w = os.width();
312 std::streamsize
const p = os.precision();
317 for (i = 0; i < v.size()-1; i++) {
318 os.width(w); os.precision(p);
321 os.width(w); os.precision(p);
322 os << v[v.size()-1] <<
" )";
326 inline std::string to_simple_string()
const
328 if (this->size() == 0)
return std::string(
"");
329 std::ostringstream os;
330 os.setf(std::ios::scientific, std::ios::floatfield);
334 for (i = 1; i < this->size(); i++) {
335 os <<
" " << (*this)[i];
340 inline int from_simple_string(std::string
const &s)
342 std::stringstream stream(s);
345 while ((stream >> (*
this)[i]) && (i < this->size())) {
348 if (i < this->size()) {
349 return COLVARS_ERROR;
353 while (stream >> input) {
354 if ((i % 100) == 0) {
355 data.reserve(data.size()+100);
357 data.resize(data.size()+1);
385 inline row(T *
const row_data,
size_t const inner_length)
386 : data(row_data), length(inner_length)
388 inline T & operator [] (
size_t const j) {
391 inline T
const & operator [] (
size_t const j)
const {
400 if (v.size() != length) {
401 return cvm::error(
"Error: setting a matrix row from a vector of "
402 "incompatible size.\n", COLVARS_BUG_ERROR);
404 for (
size_t i = 0; i < length; i++) data[i] = v[i];
410 std::vector<row> rows;
411 std::vector<T *> pointers;
416 inline void resize(
size_t const ol,
size_t const il)
418 if ((ol > 0) && (il > 0)) {
420 if (data.size() > 0) {
423 std::vector<T> new_data(ol * il);
424 for (i = 0; i < outer_length; i++) {
425 for (j = 0; j < inner_length; j++) {
426 new_data[il*i+j] = data[inner_length*i+j];
429 data.resize(ol * il);
433 data.resize(ol * il);
439 if (data.size() > 0) {
443 rows.reserve(outer_length);
445 pointers.reserve(outer_length);
446 for (i = 0; i < outer_length; i++) {
447 rows.push_back(
row(&(data[0])+inner_length*i, inner_length));
448 pointers.push_back(&(data[0])+inner_length*i);
467 data.assign(data.size(), T(0.0));
470 inline size_t size()
const
477 : outer_length(0), inner_length(0)
482 inline matrix2d(
size_t const ol,
size_t const il)
483 : outer_length(ol), inner_length(il)
485 this->
resize(outer_length, inner_length);
491 : outer_length(m.outer_length), inner_length(m.inner_length)
494 this->
resize(outer_length, inner_length);
516 inline row & operator [] (
size_t const i)
520 inline row
const & operator [] (
size_t const i)
const
528 if ((outer_length != m.outer_length) || (inner_length != m.inner_length)){
530 outer_length = m.outer_length;
531 inner_length = m.inner_length;
532 this->
resize(outer_length, inner_length);
540 if (rows.size() > 0) {
541 return &(pointers[0]);
549 if ((m1.outer_length != m2.outer_length) ||
550 (m1.inner_length != m2.inner_length)) {
551 cvm::error(
"Error: trying to perform an operation between "
552 "matrices of different sizes, "+
560 inline void operator += (matrix2d<T>
const &m)
562 check_sizes(*
this, m);
564 for (i = 0; i < data.size(); i++) {
565 data[i] += m.data[i];
569 inline void operator -= (matrix2d<T>
const &m)
571 check_sizes(*
this, m);
573 for (i = 0; i < data.size(); i++) {
574 data[i] -= m.data[i];
581 for (i = 0; i < data.size(); i++) {
589 for (i = 0; i < data.size(); i++) {
594 inline friend matrix2d<T> operator + (matrix2d<T>
const &m1,
595 matrix2d<T>
const &m2)
598 matrix2d<T> result(m1.outer_length, m1.inner_length);
600 for (i = 0; i < m1.data.size(); i++) {
601 result.data[i] = m1.data[i] + m2.data[i];
606 inline friend matrix2d<T> operator - (matrix2d<T>
const &m1,
607 matrix2d<T>
const &m2)
610 matrix2d<T> result(m1.outer_length, m1.inner_length);
612 for (i = 0; i < m1.data.size(); i++) {
613 result.data[i] = m1.data[i] - m1.data[i];
618 inline friend matrix2d<T> operator * (matrix2d<T>
const &m,
cvm::real a)
620 matrix2d<T> result(m.outer_length, m.inner_length);
622 for (i = 0; i < m.data.size(); i++) {
623 result.data[i] = m.data[i] * a;
628 inline friend matrix2d<T> operator * (
cvm::real a, matrix2d<T>
const &m)
633 inline friend matrix2d<T> operator / (matrix2d<T>
const &m,
cvm::real a)
635 matrix2d<T> result(m.outer_length, m.inner_length);
637 for (i = 0; i < m.data.size(); i++) {
638 result.data[i] = m.data[i] * a;
648 if (m.outer_length != v.size()) {
649 cvm::error(
"Error: trying to multiply a vector and a matrix "
650 "of incompatible sizes, "+
656 for (i = 0; i < m.inner_length; i++) {
657 for (k = 0; k < m.outer_length; k++) {
658 result[i] += m[k][i] * v[k];
669 std::streamsize
const w = os.width();
670 std::streamsize
const p = os.precision();
675 for (i = 0; i < m.outer_length; i++) {
678 for (j = 0; j < m.inner_length-1; j++) {
681 os << m[i][j] <<
" , ";
685 os << m[i][m.inner_length-1] <<
" )";
692 inline std::string to_simple_string()
const
694 if (this->size() == 0)
return std::string(
"");
695 std::ostringstream os;
696 os.setf(std::ios::scientific, std::ios::floatfield);
700 for (i = 1; i < data.size(); i++) {
701 os <<
" " << data[i];
706 inline int from_simple_string(std::string
const &s)
708 std::stringstream stream(s);
710 while ((i < data.size()) && (stream >> data[i])) {
713 if (i < data.size()) {
714 return COLVARS_ERROR;
747 set(v[0], v[1], v[2]);
771 return (i == 0) ? x : (i == 1) ? y : (i == 2) ? z : x;
776 return (i == 0) ? x : (i == 1) ? y : (i == 2) ? z : x;
809 inline void operator /= (
cvm::real const& v)
818 return (x*x + y*y + z*z);
832 static inline size_t output_width(
size_t real_width)
834 return 3*real_width + 10;
842 -v1.x*v2.z + v2.x*v1.z,
843 v1.x*v2.y - v2.x*v1.y);
854 return cvm::rvector(v1.x + v2.x, v1.y + v2.y, v1.z + v2.z);
859 return cvm::rvector(v1.x - v2.x, v1.y - v2.y, v1.z - v2.z);
866 return v1.x * v2.x + v1.y * v2.y + v1.z * v2.z;
884 std::string to_simple_string()
const;
885 int from_simple_string(std::string
const &s);
895 cvm::real xx, xy, xz, yx, yy, yz, zx, zy, zz;
922 xx = xy = xz = yx = yy = yz = zx = zy = zz = 0.0;
929 ( xx * (yy*zz - zy*yz))
930 - (yx * (xy*zz - zy*xz))
931 + (zx * (xy*yz - yy*xz));
945 m.yx*r.x + m.yy*r.y + m.yz*r.z,
946 m.zx*r.x + m.zy*r.y + m.zz*r.z);
962 : q0(0.0), q1(x), q2(y), q3(z)
967 : q0(qv[0]), q1(qv[1]), q2(qv[2]), q3(qv[3])
975 : q0(q0i), q1(q1i), q2(q2i), q3(q3i)
979 : q0(v[0]), q1(v[1]), q2(v[2]), q3(v[3])
1011 q0 = q1 = q2 = q3 = value;
1031 return 4*real_width + 13;
1034 std::string to_simple_string()
const;
1035 int from_simple_string(std::string
const &s);
1054 cvm::error(
"Error: incorrect quaternion component.\n");
1071 cvm::error(
"Error: trying to access a quaternion "
1072 "component which is not between 0 and 3.\n");
1090 return q0*q0 + q1*q1 + q2*q2 + q3*q3;
1107 q0 *= a; q1 *= a; q2 *= a; q3 *= a;
1112 q0 /= a; q1 /= a; q2 /= a; q3 /= a;
1115 inline void set_positive()
1117 if (q0 > 0.0)
return;
1126 q0+=h.q0; q1+=h.q1; q2+=h.q2; q3+=h.q3;
1130 q0-=h.q0; q1-=h.q1; q2-=h.q2; q3-=h.q3;
1158 h.q0*q.q1 + h.q1*q.q0 + h.q2*q.q3 - h.q3*q.q2,
1159 h.q0*q.q2 + h.q2*q.q0 + h.q3*q.q1 - h.q1*q.q3,
1160 h.q0*q.q3 + h.q3*q.q0 + h.q1*q.q2 - h.q2*q.q1);
1201 R.xx = q0*q0 + q1*q1 - q2*q2 - q3*q3;
1202 R.yy = q0*q0 - q1*q1 + q2*q2 - q3*q3;
1203 R.zz = q0*q0 - q1*q1 - q2*q2 + q3*q3;
1205 R.xy = 2.0 * (q1*q2 - q0*q3);
1206 R.xz = 2.0 * (q0*q2 + q1*q3);
1208 R.yx = 2.0 * (q0*q3 + q1*q2);
1209 R.yz = 2.0 * (q2*q3 - q0*q1);
1211 R.zx = 2.0 * (q1*q3 - q0*q2);
1212 R.zy = 2.0 * (q0*q1 + q2*q3);
1258 return cvm::quaternion(2.0 * (vec.x * ( q0 * pos.x - q3 * pos.y + q2 * pos.z) +
1259 vec.y * ( q3 * pos.x + q0 * pos.y - q1 * pos.z) +
1260 vec.z * (-q2 * pos.x + q1 * pos.y + q0 * pos.z)),
1261 2.0 * (vec.x * ( q1 * pos.x + q2 * pos.y + q3 * pos.z) +
1262 vec.y * ( q2 * pos.x - q1 * pos.y - q0 * pos.z) +
1263 vec.z * ( q3 * pos.x + q0 * pos.y - q1 * pos.z)),
1264 2.0 * (vec.x * (-q2 * pos.x + q1 * pos.y + q0 * pos.z) +
1265 vec.y * ( q1 * pos.x + q2 * pos.y + q3 * pos.z) +
1266 vec.z * (-q0 * pos.x + q3 * pos.y - q2 * pos.z)),
1267 2.0 * (vec.x * (-q3 * pos.x - q0 * pos.y + q1 * pos.z) +
1268 vec.y * ( q0 * pos.x - q3 * pos.y + q2 * pos.z) +
1269 vec.z * ( q1 * pos.x + q2 * pos.y + q3 * pos.z)));
1278 return 2.0*iprod*iprod - 1.0;
1286 cvm::real const cos_omega = this->q0*Q2.q0 + this->q1*Q2.q1 +
1287 this->q2*Q2.q2 + this->q3*Q2.q3;
1290 ( (cos_omega < -1.0) ? -1.0 : cos_omega) );
1293 if (cos_omega > 0.0)
1294 return omega * omega;
1296 return (PI-omega) * (PI-omega);
1303 cvm::real const cos_omega = this->q0*Q2.q0 + this->q1*Q2.q1 + this->q2*Q2.q2 + this->q3*Q2.q3;
1305 ( (cos_omega < -1.0) ? -1.0 : cos_omega) );
1314 grad1((-1.0)*sin_omega*Q2.q0 + cos_omega*(this->q0-cos_omega*Q2.q0)/sin_omega,
1315 (-1.0)*sin_omega*Q2.q1 + cos_omega*(this->q1-cos_omega*Q2.q1)/sin_omega,
1316 (-1.0)*sin_omega*Q2.q2 + cos_omega*(this->q2-cos_omega*Q2.q2)/sin_omega,
1317 (-1.0)*sin_omega*Q2.q3 + cos_omega*(this->q3-cos_omega*Q2.q3)/sin_omega);
1319 if (cos_omega > 0.0) {
1320 return 2.0*omega*grad1;
1322 return -2.0*(PI-omega)*grad1;
1330 cvm::real const cos_omega = this->q0*Q2.q0 + this->q1*Q2.q1 +
1331 this->q2*Q2.q2 + this->q3*Q2.q3;
1332 if (cos_omega < 0.0) Q2 *= -1.0;
1339 cvm::real const prod = this->q0*Q2.q0 + this->q1*Q2.q1 +
1340 this->q2*Q2.q2 + this->q3*Q2.q3;
1347#ifndef COLVARS_LAMMPS
1349int diagonalize_matrix(
cvm::real m[4][4],
1383 template <
typename T1,
typename T2>
1386 template<
typename T1,
typename T2>
1389 const std::vector<T1> &pos1,
1390 const std::vector<T2> &pos2);
1403 std::vector<atom_pos>
const &pos2);
1405 std::vector<atom_pos>
const &pos2);
1446 while (alpha > 180.0) alpha -= 360;
1447 while (alpha < -180.0) alpha += 360;
1461 (180.0/PI) * 2.0 * (1.0 / (1.0 + (iprod*iprod)/(
q.q0*
q.q0)));
1464 dspindx * ((1.0/
q.q0) * axis.x),
1465 dspindx * ((1.0/
q.q0) * axis.y),
1466 dspindx * ((1.0/
q.q0) * axis.z));
1471 return cvm::quaternion((180.0/PI) * 2.0 * ((-1.0)/iprod), 0.0, 0.0, 0.0);
1481 (180.0/PI) * 2.0 *
cvm::atan2(axis * q_vec,
q.q0);
1484 cvm::real const cos_theta_2 = ( (cos_spin_2 != 0.0) ?
1485 (
q.q0 / cos_spin_2) :
1488 return 2.0 * (cos_theta_2*cos_theta_2) - 1.0;
1502 (4.0 *
q.q0 / (cos_spin_2*cos_spin_2)) *
1503 (1.0 - (iprod*iprod)/(
q.q0*
q.q0) / (1.0 + (iprod*iprod)/(
q.q0*
q.q0)));
1506 (4.0 *
q.q0 / (cos_spin_2*cos_spin_2) *
1507 (iprod/
q.q0) / (1.0 + (iprod*iprod)/(
q.q0*
q.q0)));
1510 d_cos_theta_dqn * axis.x,
1511 d_cos_theta_dqn * axis.y,
1512 d_cos_theta_dqn * axis.z);
1516 (4.0 / (cos_spin_2*cos_spin_2 * iprod));
1519 d_cos_theta_dqn * axis.x,
1520 d_cos_theta_dqn * axis.y,
1521 d_cos_theta_dqn * axis.z);
1539 std::vector<cvm::atom_pos>
const &pos2);
1541 std::vector<cvm::atom_pos>
const &pos2);
Definition: colvartypes.h:381
Arbitrary size array (two dimensions) suitable for linear algebra operations (i.e....
Definition: colvartypes.h:372
matrix2d(matrix2d< T > const &m)
Copy constructor.
Definition: colvartypes.h:490
T ** c_array()
Return the 2-d C array.
Definition: colvartypes.h:539
void clear()
Deallocation routine.
Definition: colvartypes.h:459
~matrix2d()
Destructor.
Definition: colvartypes.h:500
std::vector< T > const & data_array() const
Return a reference to the data.
Definition: colvartypes.h:511
matrix2d< T > & operator=(matrix2d< T > const &m)
Assignment.
Definition: colvartypes.h:526
matrix2d()
Default constructor.
Definition: colvartypes.h:476
std::vector< T > & data_array()
Return a reference to the data.
Definition: colvartypes.h:505
void resize(size_t const ol, size_t const il)
Allocation routine, used by all constructors.
Definition: colvartypes.h:416
friend std::ostream & operator<<(std::ostream &os, matrix2d< T > const &m)
Formatted output.
Definition: colvartypes.h:666
void reset()
Set all elements to zero.
Definition: colvartypes.h:465
1-dimensional vector of real numbers with four components and a quaternion algebra
Definition: colvartypes.h:954
cvm::real & operator[](int i)
Access the quaternion as a 4-d array (return a reference)
Definition: colvartypes.h:1043
void set_from_euler_angles(cvm::real phi_in, cvm::real theta_in, cvm::real psi_in)
Definition: colvartypes.h:985
cvm::real cosine(cvm::quaternion const &q) const
Return the cosine between the orientation frame associated to this quaternion and another.
Definition: colvartypes.h:1275
cvm::rvector get_vector() const
Return the vector component.
Definition: colvartypes.h:1134
friend std::istream & operator>>(std::istream &is, cvm::quaternion &q)
Formatted input operator.
Definition: colvartypes.cpp:123
cvm::quaternion rotate(cvm::quaternion const &Q2) const
Rotate Q2 through this quaternion (put it in the rotated reference frame)
Definition: colvartypes.h:1190
cvm::real norm() const
Norm of the quaternion.
Definition: colvartypes.h:1094
quaternion(cvm::real const qv[4])
Constructor component by component.
Definition: colvartypes.h:966
quaternion()
Default constructor.
Definition: colvartypes.h:1003
void reset()
Set all components to zero (null quaternion)
Definition: colvartypes.h:1015
friend std::ostream & operator<<(std::ostream &os, cvm::quaternion const &q)
Formatted output operator.
Definition: colvartypes.cpp:104
cvm::rvector rotate(cvm::rvector const &v) const
Rotate v through this quaternion (put it in the rotated reference frame)
Definition: colvartypes.h:1182
cvm::quaternion dist2_grad(cvm::quaternion const &Q2) const
Definition: colvartypes.h:1301
cvm::quaternion position_derivative_inner(cvm::rvector const &pos, cvm::rvector const &vec) const
Multiply the given vector by the derivative of the given (rotated) position with respect to the quate...
Definition: colvartypes.h:1256
void match(cvm::quaternion &Q2) const
Choose the closest between Q2 and -Q2 and save it back. Not required for dist2() and dist2_grad()
Definition: colvartypes.h:1328
static size_t output_width(size_t real_width)
Tell the number of characters required to print a quaternion, given that of a real number.
Definition: colvartypes.h:1029
cvm::real norm2() const
Square norm of the quaternion.
Definition: colvartypes.h:1088
cvm::rmatrix rotation_matrix() const
Return the 3x3 matrix associated to this quaternion.
Definition: colvartypes.h:1197
cvm::quaternion conjugate() const
Return the conjugate quaternion.
Definition: colvartypes.h:1100
void set(cvm::real value)
Set all components to a scalar.
Definition: colvartypes.h:1009
cvm::real inner(cvm::quaternion const &Q2) const
Inner product (as a 4-d vector) with Q2; requires match() if the largest overlap is looked for.
Definition: colvartypes.h:1337
quaternion(cvm::real q0i, cvm::real q1i, cvm::real q2i, cvm::real q3i)
Constructor component by component.
Definition: colvartypes.h:971
quaternion(cvm::real x, cvm::real y, cvm::real z)
Constructor from a 3-d vector.
Definition: colvartypes.h:961
friend cvm::quaternion operator*(cvm::quaternion const &h, cvm::quaternion const &q)
Provides the quaternion product. NOTE: for the inner product use: h.inner (q);
Definition: colvartypes.h:1154
cvm::real dist2(cvm::quaternion const &Q2) const
Square distance from another quaternion on the 4-dimensional unit sphere: returns the square of the a...
Definition: colvartypes.h:1284
void reset_rotation()
Set the q0 component to 1 and the others to 0 (quaternion representing no rotation)
Definition: colvartypes.h:1022
2-dimensional array of real numbers with three components along each dimension (works with colvarmodu...
Definition: colvartypes.h:891
rmatrix(cvm::real xxi, cvm::real xyi, cvm::real xzi, cvm::real yxi, cvm::real yyi, cvm::real yzi, cvm::real zxi, cvm::real zyi, cvm::real zzi)
Constructor component by component.
Definition: colvartypes.h:904
cvm::real determinant() const
Return the determinant.
Definition: colvartypes.h:926
rmatrix()
Default constructor.
Definition: colvartypes.h:898
A rotation between two sets of coordinates (for the moment a wrapper for colvarmodule::quaternion)
Definition: colvartypes.h:1359
~rotation()
Destructor.
Definition: colvartypes.cpp:198
cvm::rmatrix C
Correlation matrix C (3, 3)
Definition: colvartypes.h:1362
rotation()
Default constructor.
Definition: colvartypes.cpp:160
cvm::real cos_theta(cvm::rvector const &axis) const
Return the projection of the orientation vector onto a predefined axis.
Definition: colvartypes.h:1477
cvm::real S_eigval[4]
Eigenvalues of S.
Definition: colvartypes.h:1368
cvm::real S_backup[4][4]
Used for debugging gradients.
Definition: colvartypes.h:1374
cvm::rvector rotate(cvm::rvector const &v) const
Return the rotated vector.
Definition: colvartypes.h:1423
int init()
Initialize member data.
Definition: colvartypes.cpp:151
cvm::real S[4][4]
Overlap matrix S (4, 4)
Definition: colvartypes.h:1365
cvm::quaternion dspin_angle_dq(cvm::rvector const &axis) const
Return the derivative of the spin angle with respect to the quaternion.
Definition: colvartypes.h:1453
friend void debug_gradients(cvm::rotation &rot, const std::vector< T1 > &pos1, const std::vector< T2 > &pos2)
Function for debugging gradients (allow using either std::vector<cvm::atom_pos> or std::vector<cvm::a...
Definition: colvar_rotation_derivative.h:527
cvm::quaternion dcos_theta_dq(cvm::rvector const &axis) const
Return the derivative of the tilt wrt the quaternion.
Definition: colvartypes.h:1492
cvm::real spin_angle(cvm::rvector const &axis) const
Return the spin angle (in degrees) with respect to the provided axis (which MUST be normalized)
Definition: colvartypes.h:1442
cvm::real S_eigvec[4][4]
Eigenvectors of S.
Definition: colvartypes.h:1371
void calc_optimal_rotation(std::vector< atom_pos > const &pos1, std::vector< atom_pos > const &pos2)
Calculate the optimal rotation and store the corresponding eigenvalue and eigenvector in the argument...
static cvm::real crossing_threshold
Threshold for the eigenvalue crossing test.
Definition: colvartypes.h:1528
cvm::quaternion q_old
Previous value of the rotation (used to warn the user when the structure changes too much,...
Definition: colvartypes.h:1535
static bool monitor_crossings
Whether to test for eigenvalue crossing.
Definition: colvartypes.h:1526
bool b_debug_gradients
Perform gradient tests.
Definition: colvartypes.h:1378
void build_correlation_matrix(std::vector< cvm::atom_pos > const &pos1, std::vector< cvm::atom_pos > const &pos2)
Build the correlation matrix C (used by calc_optimal_rotation())
Definition: colvartypes.cpp:209
cvm::rmatrix matrix() const
Return the associated 3x3 matrix.
Definition: colvartypes.h:1435
void * jacobi
Pointer to instance of Jacobi solver.
Definition: colvartypes.h:1550
void compute_overlap_matrix()
Compute the overlap matrix S (used by calc_optimal_rotation())
Definition: colvartypes.cpp:248
void calc_optimal_rotation_impl()
Actual implementation of calc_optimal_rotation (and called by it)
Definition: colvartypes.cpp:340
cvm::rotation inverse() const
Return the inverse of this rotation.
Definition: colvartypes.h:1429
cvm::quaternion q
The rotation itself (implemented as a quaternion)
Definition: colvartypes.h:1381
vector of real numbers with three components
Definition: colvartypes.h:723
cvm::real & operator[](int i)
Access cartesian components by index.
Definition: colvartypes.h:770
void set(cvm::real x_i, cvm::real y_i, cvm::real z_i)
Assign all components.
Definition: colvartypes.h:762
void reset()
Set all components to zero.
Definition: colvartypes.h:735
void set(cvm::real value)
Set all components to a scalar.
Definition: colvartypes.h:756
friend cvm::real operator*(cvm::rvector const &v1, cvm::rvector const &v2)
Inner (dot) product.
Definition: colvartypes.h:863
Arbitrary size array (one dimensions) suitable for linear algebra operations (i.e....
Definition: colvartypes.h:33
void reset()
Set all elements to zero.
Definition: colvartypes.h:92
size_t output_width(size_t real_width) const
Formatted output.
Definition: colvartypes.h:278
cvm::real norm2() const
Squared norm.
Definition: colvartypes.h:224
void sliceassign(size_t const i1, size_t const i2, vector1d< T > const &v)
Assign a vector to a slice of this vector.
Definition: colvartypes.h:264
std::vector< T > & data_array()
Return a reference to the data.
Definition: colvartypes.h:75
vector1d & operator=(const vector1d &)=default
Explicit Copy assignement.
vector1d(const vector1d &)=default
Explicit Copy constructor.
vector1d(size_t const n, T const *t)
Constructor from C array.
Definition: colvartypes.h:48
vector1d(size_t const n=0)
Default constructor.
Definition: colvartypes.h:41
T * c_array()
Return a pointer to the data location.
Definition: colvartypes.h:65
vector1d< T > const slice(size_t const i1, size_t const i2) const
Slicing.
Definition: colvartypes.h:250
std::vector< T > const & data_array() const
Return a reference to the data.
Definition: colvartypes.h:81
double real
Defining an abstract real number allows to switch precision.
Definition: colvarmodule.h:100
static real cos(real const &x)
Reimplemented to work around MS compiler issues.
Definition: colvarmodule.h:150
static int error(std::string const &message, int code=-1)
Print a message to the main log and set global error code.
Definition: colvarmodule.cpp:2070
static real atan2(real const &x, real const &y)
Reimplemented to work around MS compiler issues.
Definition: colvarmodule.h:195
static size_t const cv_prec
Number of digits to represent a collective variables value(s)
Definition: colvarmodule.h:699
static real sqrt(real const &x)
Reimplemented to work around MS compiler issues.
Definition: colvarmodule.h:138
static real acos(real const &x)
Reimplemented to work around compiler issues; return hard-coded values for boundary conditions.
Definition: colvarmodule.h:179
static real fabs(real const &x)
Reimplemented to work around MS compiler issues.
Definition: colvarmodule.h:132
static real sin(real const &x)
Reimplemented to work around MS compiler issues.
Definition: colvarmodule.h:144
static std::string to_str(char const *s)
Convert to string for output purposes.
Definition: colvarmodule.cpp:2416
Collective variables main module.
Helper class for calculating the derivative of rotation.
Definition: colvar_rotation_derivative.h:59