source: src/LinearAlgebra/Matrix.cpp@ 9eb7580

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 9eb7580 was 9eb7580, checked in by Frederik Heber <heber@…>, 14 years ago

Renamed Matrix setter functions to unify naming.

  • Matrix::one -> Matrix::setIdentity
  • Matrix::zero -> Matrix::setZero
  • Matrix::rotation -> Matrix::setRotation
  • Property mode set to 100644
File size: 8.9 KB
RevLine 
[bcf653]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
[325390]8/*
9 * Matrix.cpp
10 *
11 * Created on: Jun 25, 2010
12 * Author: crueger
13 */
14
[bf3817]15// include config.h
16#ifdef HAVE_CONFIG_H
17#include <config.h>
18#endif
19
[bbbad5]20#include "Helpers/MemDebug.hpp"
21
[57f243]22#include "LinearAlgebra/Matrix.hpp"
[325390]23#include "Helpers/Assert.hpp"
24#include "Exceptions/NotInvertibleException.hpp"
25#include "Helpers/fast_functions.hpp"
[e3ffd3]26#include "Helpers/Assert.hpp"
[57f243]27#include "LinearAlgebra/Vector.hpp"
[ce3d2b]28#include "VectorContent.hpp"
[fee079]29#include "MatrixContent.hpp"
[325390]30
31#include <gsl/gsl_blas.h>
[a439e5]32#include <gsl/gsl_eigen.h>
33#include <gsl/gsl_matrix.h>
34#include <gsl/gsl_multimin.h>
35#include <gsl/gsl_vector.h>
[325390]36#include <cmath>
[c49c96]37#include <iostream>
38
39using namespace std;
[325390]40
41Matrix::Matrix()
42{
[fee079]43 content = new MatrixContent();
44 content->content = gsl_matrix_calloc(NDIM, NDIM);
[3dbb9d]45 createViews();
[325390]46}
47
48Matrix::Matrix(const double* src){
[fee079]49 content = new MatrixContent();
50 content->content = gsl_matrix_alloc(NDIM, NDIM);
[436f04]51 set(0,0, src[0]);
52 set(1,0, src[1]);
53 set(2,0, src[2]);
[325390]54
[436f04]55 set(0,1, src[3]);
56 set(1,1, src[4]);
57 set(2,1, src[5]);
[325390]58
[436f04]59 set(0,2, src[6]);
60 set(1,2, src[7]);
61 set(2,2, src[8]);
[3dbb9d]62 createViews();
[325390]63}
64
65Matrix::Matrix(const Matrix &src){
[fee079]66 content = new MatrixContent();
67 content->content = gsl_matrix_alloc(NDIM, NDIM);
68 gsl_matrix_memcpy(content->content,src.content->content);
[3dbb9d]69 createViews();
[325390]70}
71
[fee079]72Matrix::Matrix(MatrixContent* _content) :
[325390]73 content(_content)
[3dbb9d]74{
75 createViews();
76}
[325390]77
78Matrix::~Matrix()
79{
[3dbb9d]80 // delete all views
81 for(int i=NDIM;i--;){
82 delete rows_ptr[i];
83 }
84 for(int i=NDIM;i--;){
85 delete columns_ptr[i];
86 }
87 delete diagonal_ptr;
[fee079]88 gsl_matrix_free(content->content);
89 delete content;
[325390]90}
91
[3dbb9d]92void Matrix::createViews(){
93 // create row views
94 for(int i=NDIM;i--;){
95 VectorContent *rowContent = new VectorViewContent(gsl_matrix_row(content->content,i));
96 rows_ptr[i] = new Vector(rowContent);
97 }
98 // create column views
99 for(int i=NDIM;i--;){
100 VectorContent *columnContent = new VectorViewContent(gsl_matrix_column(content->content,i));
101 columns_ptr[i] = new Vector(columnContent);
102 }
103 // create diagonal view
104 VectorContent *diagonalContent = new VectorViewContent(gsl_matrix_diagonal(content->content));
105 diagonal_ptr = new Vector(diagonalContent);
106}
107
[9eb7580]108void Matrix::setIdentity(){
[3dbb9d]109 for(int i=NDIM;i--;){
110 for(int j=NDIM;j--;){
111 set(i,j,i==j);
112 }
[1da5f5]113 }
114}
115
[9eb7580]116void Matrix::setZero(){
[a439e5]117 for(int i=NDIM;i--;){
118 for(int j=NDIM;j--;){
119 set(i,j,0.);
120 }
121 }
122}
123
[9eb7580]124void Matrix::setRotation(const double x, const double y, const double z)
[31fb1d]125{
126 set(0,0, cos(y)*cos(z));
127 set(0,1, cos(z)*sin(x)*sin(y) - cos(x)*sin(z));
128 set(0,2, cos(x)*cos(z)*sin(y) + sin(x) * sin(z));
129 set(1,0, cos(y)*sin(z));
130 set(1,1, cos(x)*cos(z) + sin(x)*sin(y)*sin(z));
131 set(1,2, -cos(z)*sin(x) + cos(x)*sin(y)*sin(z));
132 set(2,0, -sin(y));
133 set(2,1, cos(y)*sin(x));
134 set(2,2, cos(x)*cos(y));
135}
136
[325390]137Matrix &Matrix::operator=(const Matrix &src){
138 if(&src!=this){
[fee079]139 gsl_matrix_memcpy(content->content,src.content->content);
[325390]140 }
141 return *this;
142}
143
[5b4605]144const Matrix &Matrix::operator+=(const Matrix &rhs){
[fee079]145 gsl_matrix_add(content->content, rhs.content->content);
[325390]146 return *this;
147}
148
[5b4605]149const Matrix &Matrix::operator-=(const Matrix &rhs){
[fee079]150 gsl_matrix_sub(content->content, rhs.content->content);
[325390]151 return *this;
152}
153
[5b4605]154const Matrix &Matrix::operator*=(const Matrix &rhs){
[325390]155 (*this) = (*this)*rhs;
156 return *this;
157}
158
[5b4605]159const Matrix Matrix::operator+(const Matrix &rhs) const{
[325390]160 Matrix tmp = *this;
161 tmp+=rhs;
162 return tmp;
163}
164
[5b4605]165const Matrix Matrix::operator-(const Matrix &rhs) const{
[325390]166 Matrix tmp = *this;
167 tmp-=rhs;
168 return tmp;
169}
170
[5b4605]171const Matrix Matrix::operator*(const Matrix &rhs) const{
[325390]172 gsl_matrix *res = gsl_matrix_alloc(NDIM, NDIM);
[fee079]173 gsl_blas_dgemm(CblasNoTrans, CblasNoTrans, 1.0, content->content, rhs.content->content, 0.0, res);
174 MatrixContent *content= new MatrixContent();
175 content->content = res;
176 return Matrix(content);
[325390]177}
178
179double &Matrix::at(size_t i, size_t j){
[e3ffd3]180 ASSERT(i>=0&&i<NDIM,"Index i for Matrix access out of range");
181 ASSERT(j>=0&&j<NDIM,"Index j for Matrix access out of range");
[fee079]182 return *gsl_matrix_ptr (content->content, i, j);
[325390]183}
184
[436f04]185const double Matrix::at(size_t i, size_t j) const{
[e3ffd3]186 ASSERT(i>=0&&i<NDIM,"Index i for Matrix access out of range");
187 ASSERT(j>=0&&j<NDIM,"Index j for Matrix access out of range");
[fee079]188 return gsl_matrix_get(content->content, i, j);
[436f04]189}
190
[3dbb9d]191Vector &Matrix::row(size_t i){
192 ASSERT(i>=0&&i<NDIM,"Index i for Matrix access out of range");
193 return *rows_ptr[i];
194}
195
196const Vector &Matrix::row(size_t i) const{
197 ASSERT(i>=0&&i<NDIM,"Index i for Matrix access out of range");
198 return *rows_ptr[i];
199}
200
201Vector &Matrix::column(size_t i){
202 ASSERT(i>=0&&i<NDIM,"Index i for Matrix access out of range");
203 return *columns_ptr[i];
204}
205
206const Vector &Matrix::column(size_t i) const{
207 ASSERT(i>=0&&i<NDIM,"Index i for Matrix access out of range");
208 return *columns_ptr[i];
209}
210
211Vector &Matrix::diagonal(){
212 return *diagonal_ptr;
213}
214
215const Vector &Matrix::diagonal() const{
216 return *diagonal_ptr;
217}
218
[436f04]219void Matrix::set(size_t i, size_t j, const double value){
220 ASSERT(i>=0&&i<NDIM,"Index i for Matrix access out of range");
221 ASSERT(j>=0&&j<NDIM,"Index j for Matrix access out of range");
[fee079]222 gsl_matrix_set(content->content,i,j,value);
[cadbc1]223}
224
225double Matrix::determinant() const{
[325390]226 return at(0,0)*at(1,1)*at(2,2)
227 + at(0,1)*at(1,2)*at(2,0)
228 + at(0,2)*at(1,0)*at(2,1)
229 - at(2,0)*at(1,1)*at(0,2)
230 - at(2,1)*at(1,2)*at(0,0)
231 - at(2,2)*at(1,0)*at(0,1);
232}
233
[a439e5]234
[cadbc1]235Matrix Matrix::invert() const{
[325390]236 double det = determinant();
237 if(fabs(det)<MYEPSILON){
238 throw NotInvertibleException(__FILE__,__LINE__);
239 }
240
241 double detReci = 1./det;
242 Matrix res;
[436f04]243 res.set(0,0, detReci*RDET2(at(1,1),at(2,1),at(1,2),at(2,2))); // A_11
244 res.set(1,0, -detReci*RDET2(at(1,0),at(2,0),at(1,2),at(2,2))); // A_21
245 res.set(2,0, detReci*RDET2(at(1,0),at(2,0),at(1,1),at(2,1))); // A_31
246 res.set(0,1, -detReci*RDET2(at(0,1),at(2,1),at(0,2),at(2,2))); // A_12
247 res.set(1,1, detReci*RDET2(at(0,0),at(2,0),at(0,2),at(2,2))); // A_22
248 res.set(2,1, -detReci*RDET2(at(0,0),at(2,0),at(0,1),at(2,1))); // A_32
249 res.set(0,2, detReci*RDET2(at(0,1),at(1,1),at(0,2),at(1,2))); // A_13
250 res.set(1,2, -detReci*RDET2(at(0,0),at(1,0),at(0,2),at(1,2))); // A_23
251 res.set(2,2, detReci*RDET2(at(0,0),at(1,0),at(0,1),at(1,1))); // A_33
[325390]252 return res;
253}
254
[41ea3c]255Matrix Matrix::transpose() const{
256 MatrixContent *newContent = new MatrixContent();
[6c438f]257 newContent->content = gsl_matrix_alloc(NDIM, NDIM);
[41ea3c]258 gsl_matrix_transpose_memcpy(newContent->content, content->content);
259 Matrix res = Matrix(newContent);
260 return res;
261}
262
[6c438f]263Matrix &Matrix::transpose()
264{
265 double tmp;
266 for (int i=0;i<NDIM;i++)
267 for (int j=i+1;j<NDIM;j++) {
268 tmp = at(j,i);
269 at(j,i) = at(i,j);
270 at(i,j) = tmp;
271 }
272 return *this;
273}
274
275
[a439e5]276Vector Matrix::transformToEigenbasis()
277{
278 gsl_eigen_symmv_workspace *T = gsl_eigen_symmv_alloc(NDIM);
279 gsl_vector *eval = gsl_vector_alloc(NDIM);
280 gsl_matrix *evec = gsl_matrix_alloc(NDIM, NDIM);
281 gsl_eigen_symmv(content->content, eval, evec, T);
282 gsl_eigen_symmv_free(T);
283 gsl_matrix_memcpy(content->content, evec);
[80cecb5]284 gsl_matrix_free(evec);
[a439e5]285 Vector evalues(gsl_vector_get(eval,0), gsl_vector_get(eval,1), gsl_vector_get(eval,2));
[80cecb5]286 gsl_vector_free(eval);
[a439e5]287 return evalues;
288}
289
[5b4605]290const Matrix &Matrix::operator*=(const double factor){
[fee079]291 gsl_matrix_scale(content->content, factor);
[325390]292 return *this;
293}
294
[5b4605]295const Matrix operator*(const double factor,const Matrix& mat){
[325390]296 Matrix tmp = mat;
297 tmp*=factor;
298 return tmp;
299}
300
[5b4605]301const Matrix operator*(const Matrix &mat,const double factor){
[325390]302 return factor*mat;
303}
[d10eb6]304
[0eb2dc]305bool Matrix::operator==(const Matrix &rhs) const{
306 for(int i=NDIM;i--;){
307 for(int j=NDIM;j--;){
308 if(fabs(at(i,j)-rhs.at(i,j))>MYEPSILON){
309 return false;
310 }
311 }
312 }
313 return true;
314}
315
[d10eb6]316/** Blows the 6-dimensional \a cell_size array up to a full NDIM by NDIM matrix.
317 * \param *symm 6-dim array of unique symmetric matrix components
318 * \return allocated NDIM*NDIM array with the symmetric matrix
319 */
320Matrix ReturnFullMatrixforSymmetric(const double * const symm)
321{
322 Matrix matrix;
[436f04]323 matrix.set(0,0, symm[0]);
324 matrix.set(1,0, symm[1]);
325 matrix.set(2,0, symm[3]);
326 matrix.set(0,1, symm[1]);
327 matrix.set(1,1, symm[2]);
328 matrix.set(2,1, symm[4]);
329 matrix.set(0,2, symm[3]);
330 matrix.set(1,2, symm[4]);
331 matrix.set(2,2, symm[5]);
[d10eb6]332 return matrix;
333};
[c49c96]334
335ostream &operator<<(ostream &ost,const Matrix &mat){
336 for(int i = 0;i<NDIM;++i){
337 ost << "\n";
338 for(int j = 0; j<NDIM;++j){
339 ost << mat.at(i,j);
340 if(j!=NDIM-1)
341 ost << "; ";
342 }
343 }
344 return ost;
345}
[4b94bb]346
347Vector operator*(const Matrix &mat,const Vector &vec){
[2a7457]348 Vector res;
349 gsl_blas_dgemv( CblasNoTrans, 1.0, mat.content->content, vec.content->content, 0.0, res.content->content);
350 return res;
[4b94bb]351}
352
353Vector &operator*=(Vector& lhs,const Matrix &mat){
354 lhs = mat*lhs;
355 return lhs;
356}
357
Note: See TracBrowser for help on using the repository browser.