| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2010 University of Bonn. All rights reserved.
 | 
|---|
| 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | /*
 | 
|---|
| 9 |  * RealSpaceMatrix.cpp
 | 
|---|
| 10 |  *
 | 
|---|
| 11 |  *  Created on: Jun 25, 2010
 | 
|---|
| 12 |  *      Author: crueger
 | 
|---|
| 13 |  */
 | 
|---|
| 14 | 
 | 
|---|
| 15 | // include config.h
 | 
|---|
| 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 17 | #include <config.h>
 | 
|---|
| 18 | #endif
 | 
|---|
| 19 | 
 | 
|---|
| 20 | #include "Helpers/MemDebug.hpp"
 | 
|---|
| 21 | 
 | 
|---|
| 22 | #include "LinearAlgebra/RealSpaceMatrix.hpp"
 | 
|---|
| 23 | #include "Helpers/Assert.hpp"
 | 
|---|
| 24 | #include "Exceptions/NotInvertibleException.hpp"
 | 
|---|
| 25 | #include "Helpers/fast_functions.hpp"
 | 
|---|
| 26 | #include "Helpers/Assert.hpp"
 | 
|---|
| 27 | #include "LinearAlgebra/Vector.hpp"
 | 
|---|
| 28 | #include "LinearAlgebra/VectorContent.hpp"
 | 
|---|
| 29 | #include "LinearAlgebra/MatrixContent.hpp"
 | 
|---|
| 30 | 
 | 
|---|
| 31 | #include <gsl/gsl_blas.h>
 | 
|---|
| 32 | #include <gsl/gsl_eigen.h>
 | 
|---|
| 33 | #include <gsl/gsl_matrix.h>
 | 
|---|
| 34 | #include <gsl/gsl_multimin.h>
 | 
|---|
| 35 | #include <gsl/gsl_vector.h>
 | 
|---|
| 36 | #include <cmath>
 | 
|---|
| 37 | #include <iostream>
 | 
|---|
| 38 | 
 | 
|---|
| 39 | using namespace std;
 | 
|---|
| 40 | 
 | 
|---|
| 41 | RealSpaceMatrix::RealSpaceMatrix()
 | 
|---|
| 42 | {
 | 
|---|
| 43 |   content = new MatrixContent(NDIM, NDIM);
 | 
|---|
| 44 |   createViews();
 | 
|---|
| 45 | }
 | 
|---|
| 46 | 
 | 
|---|
| 47 | RealSpaceMatrix::RealSpaceMatrix(const double* src)
 | 
|---|
| 48 | {
 | 
|---|
| 49 |   content = new MatrixContent(NDIM, NDIM, src);
 | 
|---|
| 50 |   createViews();
 | 
|---|
| 51 | }
 | 
|---|
| 52 | 
 | 
|---|
| 53 | RealSpaceMatrix::RealSpaceMatrix(const RealSpaceMatrix &src)
 | 
|---|
| 54 | {
 | 
|---|
| 55 |   content = new MatrixContent(src.content);
 | 
|---|
| 56 |   createViews();
 | 
|---|
| 57 | }
 | 
|---|
| 58 | 
 | 
|---|
| 59 | RealSpaceMatrix::RealSpaceMatrix(const MatrixContent &src)
 | 
|---|
| 60 | {
 | 
|---|
| 61 |   content = new MatrixContent(src);
 | 
|---|
| 62 |   createViews();
 | 
|---|
| 63 | }
 | 
|---|
| 64 | 
 | 
|---|
| 65 | RealSpaceMatrix::RealSpaceMatrix(MatrixContent* _content)
 | 
|---|
| 66 | {
 | 
|---|
| 67 |   content = new MatrixContent(_content);
 | 
|---|
| 68 |   createViews();
 | 
|---|
| 69 | }
 | 
|---|
| 70 | 
 | 
|---|
| 71 | RealSpaceMatrix::~RealSpaceMatrix()
 | 
|---|
| 72 | {
 | 
|---|
| 73 |   // delete all views
 | 
|---|
| 74 |   for(int i=NDIM;i--;){
 | 
|---|
| 75 |     delete rows_ptr[i];
 | 
|---|
| 76 |   }
 | 
|---|
| 77 |   for(int i=NDIM;i--;){
 | 
|---|
| 78 |     delete columns_ptr[i];
 | 
|---|
| 79 |   }
 | 
|---|
| 80 |   delete diagonal_ptr;
 | 
|---|
| 81 |   delete content;
 | 
|---|
| 82 | }
 | 
|---|
| 83 | 
 | 
|---|
| 84 | void RealSpaceMatrix::createViews(){
 | 
|---|
| 85 |   // create row views
 | 
|---|
| 86 |   for(int i=NDIM;i--;){
 | 
|---|
| 87 |     VectorContent *rowContent = new VectorViewContent(gsl_matrix_row(content->content,i));
 | 
|---|
| 88 |     rows_ptr[i] = new Vector(rowContent);
 | 
|---|
| 89 |   }
 | 
|---|
| 90 |   // create column views
 | 
|---|
| 91 |   for(int i=NDIM;i--;){
 | 
|---|
| 92 |     VectorContent *columnContent = new VectorViewContent(gsl_matrix_column(content->content,i));
 | 
|---|
| 93 |     columns_ptr[i] = new Vector(columnContent);
 | 
|---|
| 94 |   }
 | 
|---|
| 95 |   // create diagonal view
 | 
|---|
| 96 |   VectorContent *diagonalContent = new VectorViewContent(gsl_matrix_diagonal(content->content));
 | 
|---|
| 97 |   diagonal_ptr = new Vector(diagonalContent);
 | 
|---|
| 98 | }
 | 
|---|
| 99 | 
 | 
|---|
| 100 | void RealSpaceMatrix::setIdentity(){
 | 
|---|
| 101 |   content->setIdentity();
 | 
|---|
| 102 | }
 | 
|---|
| 103 | 
 | 
|---|
| 104 | void RealSpaceMatrix::setZero(){
 | 
|---|
| 105 |   content->setZero();
 | 
|---|
| 106 | }
 | 
|---|
| 107 | 
 | 
|---|
| 108 | void RealSpaceMatrix::setRotation(const double x, const double y, const double z)
 | 
|---|
| 109 | {
 | 
|---|
| 110 |   set(0,0, cos(y)*cos(z));
 | 
|---|
| 111 |   set(0,1, cos(z)*sin(x)*sin(y) - cos(x)*sin(z));
 | 
|---|
| 112 |   set(0,2, cos(x)*cos(z)*sin(y) + sin(x) * sin(z));
 | 
|---|
| 113 |   set(1,0, cos(y)*sin(z));
 | 
|---|
| 114 |   set(1,1, cos(x)*cos(z) + sin(x)*sin(y)*sin(z));
 | 
|---|
| 115 |   set(1,2, -cos(z)*sin(x) + cos(x)*sin(y)*sin(z));
 | 
|---|
| 116 |   set(2,0, -sin(y));
 | 
|---|
| 117 |   set(2,1, cos(y)*sin(x));
 | 
|---|
| 118 |   set(2,2, cos(x)*cos(y));
 | 
|---|
| 119 | }
 | 
|---|
| 120 | 
 | 
|---|
| 121 | RealSpaceMatrix &RealSpaceMatrix::operator=(const RealSpaceMatrix &src)
 | 
|---|
| 122 | {
 | 
|---|
| 123 |   // MatrixContent checks for self-assignment
 | 
|---|
| 124 |   *content = *(src.content);
 | 
|---|
| 125 |   return *this;
 | 
|---|
| 126 | }
 | 
|---|
| 127 | 
 | 
|---|
| 128 | const RealSpaceMatrix &RealSpaceMatrix::operator+=(const RealSpaceMatrix &rhs)
 | 
|---|
| 129 | {
 | 
|---|
| 130 |   *content += *(rhs.content);
 | 
|---|
| 131 |   return *this;
 | 
|---|
| 132 | }
 | 
|---|
| 133 | 
 | 
|---|
| 134 | const RealSpaceMatrix &RealSpaceMatrix::operator-=(const RealSpaceMatrix &rhs)
 | 
|---|
| 135 | {
 | 
|---|
| 136 |   *content -= *(rhs.content);
 | 
|---|
| 137 |   return *this;
 | 
|---|
| 138 | }
 | 
|---|
| 139 | 
 | 
|---|
| 140 | const RealSpaceMatrix &RealSpaceMatrix::operator*=(const RealSpaceMatrix &rhs)
 | 
|---|
| 141 | {
 | 
|---|
| 142 |   (*content) *= (*rhs.content);
 | 
|---|
| 143 |   return *this;
 | 
|---|
| 144 | }
 | 
|---|
| 145 | 
 | 
|---|
| 146 | const RealSpaceMatrix RealSpaceMatrix::operator+(const RealSpaceMatrix &rhs) const
 | 
|---|
| 147 | {
 | 
|---|
| 148 |   RealSpaceMatrix tmp = *this;
 | 
|---|
| 149 |   tmp+=rhs;
 | 
|---|
| 150 |   return tmp;
 | 
|---|
| 151 | }
 | 
|---|
| 152 | 
 | 
|---|
| 153 | const RealSpaceMatrix RealSpaceMatrix::operator-(const RealSpaceMatrix &rhs) const
 | 
|---|
| 154 | {
 | 
|---|
| 155 |   RealSpaceMatrix tmp = *this;
 | 
|---|
| 156 |   tmp-=rhs;
 | 
|---|
| 157 |   return tmp;
 | 
|---|
| 158 | }
 | 
|---|
| 159 | 
 | 
|---|
| 160 | const RealSpaceMatrix RealSpaceMatrix::operator*(const RealSpaceMatrix &rhs) const
 | 
|---|
| 161 | {
 | 
|---|
| 162 |   RealSpaceMatrix tmp(content);
 | 
|---|
| 163 |   tmp *= rhs;
 | 
|---|
| 164 |   return tmp;
 | 
|---|
| 165 | }
 | 
|---|
| 166 | 
 | 
|---|
| 167 | double &RealSpaceMatrix::at(size_t i, size_t j)
 | 
|---|
| 168 | {
 | 
|---|
| 169 |   return content->at(i,j);
 | 
|---|
| 170 | }
 | 
|---|
| 171 | 
 | 
|---|
| 172 | const double RealSpaceMatrix::at(size_t i, size_t j) const
 | 
|---|
| 173 | {
 | 
|---|
| 174 |   return content->at(i,j);
 | 
|---|
| 175 | }
 | 
|---|
| 176 | 
 | 
|---|
| 177 | Vector &RealSpaceMatrix::row(size_t i)
 | 
|---|
| 178 | {
 | 
|---|
| 179 |   ASSERT(i>=0&&i<NDIM,"Index i for Matrix access out of range");
 | 
|---|
| 180 |   return *rows_ptr[i];
 | 
|---|
| 181 | }
 | 
|---|
| 182 | 
 | 
|---|
| 183 | const Vector &RealSpaceMatrix::row(size_t i) const
 | 
|---|
| 184 | {
 | 
|---|
| 185 |   ASSERT(i>=0&&i<NDIM,"Index i for Matrix access out of range");
 | 
|---|
| 186 |   return *rows_ptr[i];
 | 
|---|
| 187 | }
 | 
|---|
| 188 | 
 | 
|---|
| 189 | Vector &RealSpaceMatrix::column(size_t i)
 | 
|---|
| 190 | {
 | 
|---|
| 191 |   ASSERT(i>=0&&i<NDIM,"Index i for Matrix access out of range");
 | 
|---|
| 192 |   return *columns_ptr[i];
 | 
|---|
| 193 | }
 | 
|---|
| 194 | 
 | 
|---|
| 195 | const Vector &RealSpaceMatrix::column(size_t i) const
 | 
|---|
| 196 | {
 | 
|---|
| 197 |   ASSERT(i>=0&&i<NDIM,"Index i for Matrix access out of range");
 | 
|---|
| 198 |   return *columns_ptr[i];
 | 
|---|
| 199 | }
 | 
|---|
| 200 | 
 | 
|---|
| 201 | Vector &RealSpaceMatrix::diagonal()
 | 
|---|
| 202 | {
 | 
|---|
| 203 |   return *diagonal_ptr;
 | 
|---|
| 204 | }
 | 
|---|
| 205 | 
 | 
|---|
| 206 | const Vector &RealSpaceMatrix::diagonal() const
 | 
|---|
| 207 | {
 | 
|---|
| 208 |   return *diagonal_ptr;
 | 
|---|
| 209 | }
 | 
|---|
| 210 | 
 | 
|---|
| 211 | void RealSpaceMatrix::set(size_t i, size_t j, const double value)
 | 
|---|
| 212 | {
 | 
|---|
| 213 |   content->set(i,j, value);
 | 
|---|
| 214 | }
 | 
|---|
| 215 | 
 | 
|---|
| 216 | double RealSpaceMatrix::determinant() const{
 | 
|---|
| 217 |   return at(0,0)*at(1,1)*at(2,2)
 | 
|---|
| 218 |        + at(0,1)*at(1,2)*at(2,0)
 | 
|---|
| 219 |        + at(0,2)*at(1,0)*at(2,1)
 | 
|---|
| 220 |        - at(2,0)*at(1,1)*at(0,2)
 | 
|---|
| 221 |        - at(2,1)*at(1,2)*at(0,0)
 | 
|---|
| 222 |        - at(2,2)*at(1,0)*at(0,1);
 | 
|---|
| 223 | }
 | 
|---|
| 224 | 
 | 
|---|
| 225 | 
 | 
|---|
| 226 | RealSpaceMatrix RealSpaceMatrix::invert() const{
 | 
|---|
| 227 |   double det = determinant();
 | 
|---|
| 228 |   if(fabs(det)<MYEPSILON){
 | 
|---|
| 229 |     throw NotInvertibleException(__FILE__,__LINE__);
 | 
|---|
| 230 |   }
 | 
|---|
| 231 | 
 | 
|---|
| 232 |   double detReci = 1./det;
 | 
|---|
| 233 |   RealSpaceMatrix res;
 | 
|---|
| 234 |   res.set(0,0,  detReci*RDET2(at(1,1),at(2,1),at(1,2),at(2,2)));    // A_11
 | 
|---|
| 235 |   res.set(1,0, -detReci*RDET2(at(1,0),at(2,0),at(1,2),at(2,2)));    // A_21
 | 
|---|
| 236 |   res.set(2,0,  detReci*RDET2(at(1,0),at(2,0),at(1,1),at(2,1)));    // A_31
 | 
|---|
| 237 |   res.set(0,1, -detReci*RDET2(at(0,1),at(2,1),at(0,2),at(2,2)));    // A_12
 | 
|---|
| 238 |   res.set(1,1,  detReci*RDET2(at(0,0),at(2,0),at(0,2),at(2,2)));    // A_22
 | 
|---|
| 239 |   res.set(2,1, -detReci*RDET2(at(0,0),at(2,0),at(0,1),at(2,1)));    // A_32
 | 
|---|
| 240 |   res.set(0,2,  detReci*RDET2(at(0,1),at(1,1),at(0,2),at(1,2)));    // A_13
 | 
|---|
| 241 |   res.set(1,2, -detReci*RDET2(at(0,0),at(1,0),at(0,2),at(1,2)));    // A_23
 | 
|---|
| 242 |   res.set(2,2,  detReci*RDET2(at(0,0),at(1,0),at(0,1),at(1,1)));    // A_33
 | 
|---|
| 243 |   return res;
 | 
|---|
| 244 | }
 | 
|---|
| 245 | 
 | 
|---|
| 246 | RealSpaceMatrix RealSpaceMatrix::transpose() const
 | 
|---|
| 247 | {
 | 
|---|
| 248 |   RealSpaceMatrix res = RealSpaceMatrix(const_cast<const MatrixContent *>(content)->transpose());
 | 
|---|
| 249 |   return res;
 | 
|---|
| 250 | }
 | 
|---|
| 251 | 
 | 
|---|
| 252 | RealSpaceMatrix &RealSpaceMatrix::transpose()
 | 
|---|
| 253 | {
 | 
|---|
| 254 |   content->transpose();
 | 
|---|
| 255 |   return *this;
 | 
|---|
| 256 | }
 | 
|---|
| 257 | 
 | 
|---|
| 258 | Vector RealSpaceMatrix::transformToEigenbasis()
 | 
|---|
| 259 | {
 | 
|---|
| 260 |   gsl_vector *eval = content->transformToEigenbasis();
 | 
|---|
| 261 |   Vector evalues(gsl_vector_get(eval,0), gsl_vector_get(eval,1), gsl_vector_get(eval,2));
 | 
|---|
| 262 |   gsl_vector_free(eval);
 | 
|---|
| 263 |   return evalues;
 | 
|---|
| 264 | }
 | 
|---|
| 265 | 
 | 
|---|
| 266 | const RealSpaceMatrix &RealSpaceMatrix::operator*=(const double factor)
 | 
|---|
| 267 |     {
 | 
|---|
| 268 |   *content *= factor;
 | 
|---|
| 269 |   return *this;
 | 
|---|
| 270 | }
 | 
|---|
| 271 | 
 | 
|---|
| 272 | const RealSpaceMatrix operator*(const double factor,const RealSpaceMatrix& mat)
 | 
|---|
| 273 | {
 | 
|---|
| 274 |   RealSpaceMatrix tmp = mat;
 | 
|---|
| 275 |   return tmp *= factor;
 | 
|---|
| 276 | }
 | 
|---|
| 277 | 
 | 
|---|
| 278 | const RealSpaceMatrix operator*(const RealSpaceMatrix &mat,const double factor)
 | 
|---|
| 279 | {
 | 
|---|
| 280 |   return factor*mat;
 | 
|---|
| 281 | }
 | 
|---|
| 282 | 
 | 
|---|
| 283 | bool RealSpaceMatrix::operator==(const RealSpaceMatrix &rhs) const
 | 
|---|
| 284 | {
 | 
|---|
| 285 |   return (*content == *(rhs.content));
 | 
|---|
| 286 | }
 | 
|---|
| 287 | 
 | 
|---|
| 288 | /** Blows the 6-dimensional \a cell_size array up to a full NDIM by NDIM matrix.
 | 
|---|
| 289 |  * \param *symm 6-dim array of unique symmetric matrix components
 | 
|---|
| 290 |  * \return allocated NDIM*NDIM array with the symmetric matrix
 | 
|---|
| 291 |  */
 | 
|---|
| 292 | RealSpaceMatrix ReturnFullMatrixforSymmetric(const double * const symm)
 | 
|---|
| 293 | {
 | 
|---|
| 294 |   RealSpaceMatrix matrix;
 | 
|---|
| 295 |   matrix.set(0,0, symm[0]);
 | 
|---|
| 296 |   matrix.set(1,0, symm[1]);
 | 
|---|
| 297 |   matrix.set(2,0, symm[3]);
 | 
|---|
| 298 |   matrix.set(0,1, symm[1]);
 | 
|---|
| 299 |   matrix.set(1,1, symm[2]);
 | 
|---|
| 300 |   matrix.set(2,1, symm[4]);
 | 
|---|
| 301 |   matrix.set(0,2, symm[3]);
 | 
|---|
| 302 |   matrix.set(1,2, symm[4]);
 | 
|---|
| 303 |   matrix.set(2,2, symm[5]);
 | 
|---|
| 304 |   return matrix;
 | 
|---|
| 305 | };
 | 
|---|
| 306 | 
 | 
|---|
| 307 | ostream &operator<<(ostream &ost,const RealSpaceMatrix &mat)
 | 
|---|
| 308 | {
 | 
|---|
| 309 |   for(int i = 0;i<NDIM;++i){
 | 
|---|
| 310 |     ost << "\n";
 | 
|---|
| 311 |     for(int j = 0; j<NDIM;++j){
 | 
|---|
| 312 |       ost << mat.at(i,j);
 | 
|---|
| 313 |       if(j!=NDIM-1)
 | 
|---|
| 314 |         ost << "; ";
 | 
|---|
| 315 |     }
 | 
|---|
| 316 |   }
 | 
|---|
| 317 |   return ost;
 | 
|---|
| 318 | }
 | 
|---|
| 319 | 
 | 
|---|
| 320 | Vector operator*(const RealSpaceMatrix &mat,const Vector &vec)
 | 
|---|
| 321 | {
 | 
|---|
| 322 |   return (*mat.content) * vec;
 | 
|---|
| 323 | }
 | 
|---|
| 324 | 
 | 
|---|
| 325 | Vector &operator*=(Vector& lhs,const RealSpaceMatrix &mat)
 | 
|---|
| 326 | {
 | 
|---|
| 327 |   lhs = mat*lhs;
 | 
|---|
| 328 |   return lhs;
 | 
|---|
| 329 | }
 | 
|---|
| 330 | 
 | 
|---|