Add conserved quantity for Berendsen P-couple
[gromacs.git] / src / gromacs / linearalgebra / matrix.cpp
blobbd1b9510a75acc7a0896e8aa496f7e0aef800c55
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2008, The GROMACS development team.
6 * Copyright (c) 2012,2013,2014,2015,2017, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
37 #include "gmxpre.h"
39 #include "matrix.h"
41 #include "config.h"
43 #include <stdio.h>
45 #include "gromacs/utility/fatalerror.h"
46 #include "gromacs/utility/smalloc.h"
48 #include "gmx_lapack.h"
50 double **alloc_matrix(int n, int m)
52 double **ptr;
53 int i;
55 /* There's always time for more pointer arithmetic! */
56 /* This is necessary in order to be able to work with LAPACK */
57 snew(ptr, n);
58 snew(ptr[0], n*m);
59 for (i = 1; (i < n); i++)
61 ptr[i] = ptr[i-1]+m;
63 return ptr;
66 void free_matrix(double **a)
68 sfree(a[0]);
69 sfree(a);
72 #define DEBUG_MATRIX
73 void matrix_multiply(FILE *fp, int n, int m, double **x, double **y, double **z)
75 int i, j, k;
77 #ifdef DEBUG_MATRIX
78 if (fp)
80 fprintf(fp, "Multiplying %d x %d matrix with a %d x %d matrix\n",
81 n, m, m, n);
83 if (fp)
85 for (i = 0; (i < n); i++)
87 for (j = 0; (j < m); j++)
89 fprintf(fp, " %7g", x[i][j]);
91 fprintf(fp, "\n");
94 #endif
95 for (i = 0; (i < m); i++)
97 for (j = 0; (j < m); j++)
99 z[i][j] = 0;
100 for (k = 0; (k < n); k++)
102 z[i][j] += x[k][i]*y[j][k];
108 static void dump_matrix(FILE *fp, const char *title, int n, double **a)
110 double d = 1;
111 int i, j;
113 fprintf(fp, "%s\n", title);
114 for (i = 0; (i < n); i++)
116 d = d*a[i][i];
117 for (j = 0; (j < n); j++)
119 fprintf(fp, " %8.2f", a[i][j]);
121 fprintf(fp, "\n");
123 fprintf(fp, "Prod a[i][i] = %g\n", d);
126 int matrix_invert(FILE *fp, int n, double **a)
128 int i, j, m, lda, *ipiv, lwork, info;
129 double **test = nullptr, **id, *work;
131 #ifdef DEBUG_MATRIX
132 if (fp)
134 fprintf(fp, "Inverting %d square matrix\n", n);
135 test = alloc_matrix(n, n);
136 for (i = 0; (i < n); i++)
138 for (j = 0; (j < n); j++)
140 test[i][j] = a[i][j];
143 dump_matrix(fp, "before inversion", n, a);
145 #endif
146 snew(ipiv, n);
147 lwork = n*n;
148 snew(work, lwork);
149 m = lda = n;
150 info = 0;
151 F77_FUNC(dgetrf, DGETRF) (&n, &m, a[0], &lda, ipiv, &info);
152 #ifdef DEBUG_MATRIX
153 if (fp)
155 dump_matrix(fp, "after dgetrf", n, a);
157 #endif
158 if (info != 0)
160 return info;
162 F77_FUNC(dgetri, DGETRI) (&n, a[0], &lda, ipiv, work, &lwork, &info);
163 #ifdef DEBUG_MATRIX
164 if (fp)
166 dump_matrix(fp, "after dgetri", n, a);
168 #endif
169 if (info != 0)
171 return info;
174 #ifdef DEBUG_MATRIX
175 if (fp)
177 id = alloc_matrix(n, n);
178 matrix_multiply(fp, n, n, test, a, id);
179 dump_matrix(fp, "And here is the product of A and Ainv", n, id);
180 free_matrix(id);
181 free_matrix(test);
183 #endif
184 sfree(ipiv);
185 sfree(work);
187 return 0;
190 double multi_regression(FILE *fp, int nrow, double *y, int ncol,
191 double **xx, double *a0)
193 int row, i, j;
194 double ax, chi2, **a, **at, **ata, *atx;
196 a = alloc_matrix(nrow, ncol);
197 at = alloc_matrix(ncol, nrow);
198 ata = alloc_matrix(ncol, ncol);
199 for (i = 0; (i < nrow); i++)
201 for (j = 0; (j < ncol); j++)
203 at[j][i] = a[i][j] = xx[j][i];
206 matrix_multiply(fp, nrow, ncol, a, at, ata);
207 if ((row = matrix_invert(fp, ncol, ata)) != 0)
209 gmx_fatal(FARGS, "Matrix inversion failed. Incorrect row = %d.\nThis probably indicates that you do not have sufficient data points, or that some parameters are linearly dependent.",
210 row);
212 snew(atx, ncol);
214 for (i = 0; (i < ncol); i++)
216 atx[i] = 0;
217 for (j = 0; (j < nrow); j++)
219 atx[i] += at[i][j]*y[j];
222 for (i = 0; (i < ncol); i++)
224 a0[i] = 0;
225 for (j = 0; (j < ncol); j++)
227 a0[i] += ata[i][j]*atx[j];
230 chi2 = 0;
231 for (j = 0; (j < nrow); j++)
233 ax = 0;
234 for (i = 0; (i < ncol); i++)
236 ax += a0[i]*a[j][i];
238 chi2 += (y[j] - ax) * (y[j] - ax);
241 sfree(atx);
242 free_matrix(a);
243 free_matrix(at);
244 free_matrix(ata);
246 return chi2;