Merge release-5-0 into master
[alexxy/gromacs.git] / src / gromacs / pulling / pullutil.c
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2013,2014, 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.
10  *
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.
15  *
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.
20  *
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.
25  *
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.
33  *
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.
36  */
37 #include "config.h"
38
39 #include <stdlib.h>
40
41 #include "gromacs/utility/futil.h"
42 #include "gromacs/math/vec.h"
43 #include "gromacs/utility/smalloc.h"
44 #include "typedefs.h"
45 #include "types/commrec.h"
46 #include "names.h"
47 #include "gromacs/utility/fatalerror.h"
48 #include "macros.h"
49 #include "gromacs/fileio/confio.h"
50 #include "network.h"
51 #include "gromacs/pbcutil/pbc.h"
52 #include "pull.h"
53 #include "gmx_ga2la.h"
54
55 static void pull_set_pbcatom(t_commrec *cr, t_pull_group *pgrp,
56                              t_mdatoms *md, rvec *x,
57                              rvec x_pbc)
58 {
59     int a, m;
60
61     if (cr && PAR(cr))
62     {
63         if (DOMAINDECOMP(cr))
64         {
65             if (!ga2la_get_home(cr->dd->ga2la, pgrp->pbcatom, &a))
66             {
67                 a = -1;
68             }
69         }
70         else
71         {
72             a = pgrp->pbcatom;
73         }
74
75         if (a >= 0 && a < md->homenr)
76         {
77             copy_rvec(x[a], x_pbc);
78         }
79         else
80         {
81             clear_rvec(x_pbc);
82         }
83     }
84     else
85     {
86         copy_rvec(x[pgrp->pbcatom], x_pbc);
87     }
88 }
89
90 static void pull_set_pbcatoms(t_commrec *cr, t_pull *pull,
91                               t_mdatoms *md, rvec *x,
92                               rvec *x_pbc)
93 {
94     int g, n, m;
95
96     n = 0;
97     for (g = 0; g < pull->ngroup; g++)
98     {
99         if ((g == 0 && PULL_CYL(pull)) || pull->group[g].pbcatom == -1)
100         {
101             clear_rvec(x_pbc[g]);
102         }
103         else
104         {
105             pull_set_pbcatom(cr, &pull->group[g], md, x, x_pbc[g]);
106             for (m = 0; m < DIM; m++)
107             {
108                 if (pull->dim[m] == 0)
109                 {
110                     x_pbc[g][m] = 0.0;
111                 }
112             }
113             n++;
114         }
115     }
116
117     if (cr && PAR(cr) && n > 0)
118     {
119         /* Sum over the nodes to get x_pbc from the home node of pbcatom */
120         gmx_sum(pull->ngroup*DIM, x_pbc[0], cr);
121     }
122 }
123
124 /* switch function, x between r and w */
125 static real get_weight(real x, real r1, real r0)
126 {
127     real weight;
128
129     if (x >= r0)
130     {
131         weight = 0;
132     }
133     else if (x <= r1)
134     {
135         weight = 1;
136     }
137     else
138     {
139         weight = (r0 - x)/(r0 - r1);
140     }
141
142     return weight;
143 }
144
145 static void make_cyl_refgrps(t_commrec *cr, t_pull *pull, t_mdatoms *md,
146                              t_pbc *pbc, double t, rvec *x, rvec *xp)
147 {
148     int           c, i, ii, m, start, end;
149     rvec          g_x, dx, dir;
150     double        r0_2, sum_a, sum_ap, dr2, mass, weight, wmass, wwmass, inp;
151     t_pull_coord *pcrd;
152     t_pull_group *pref, *pgrp, *pdyna;
153     gmx_ga2la_t   ga2la = NULL;
154
155     if (pull->dbuf_cyl == NULL)
156     {
157         snew(pull->dbuf_cyl, pull->ncoord*4);
158     }
159
160     if (cr && DOMAINDECOMP(cr))
161     {
162         ga2la = cr->dd->ga2la;
163     }
164
165     start = 0;
166     end   = md->homenr;
167
168     r0_2 = dsqr(pull->cyl_r0);
169
170     /* loop over all groups to make a reference group for each*/
171     for (c = 0; c < pull->ncoord; c++)
172     {
173         pcrd  = &pull->coord[c];
174
175         /* pref will be the same group for all pull coordinates */
176         pref  = &pull->group[pcrd->group[0]];
177         pgrp  = &pull->group[pcrd->group[1]];
178         pdyna = &pull->dyna[c];
179         copy_rvec(pcrd->vec, dir);
180         sum_a          = 0;
181         sum_ap         = 0;
182         wmass          = 0;
183         wwmass         = 0;
184         pdyna->nat_loc = 0;
185
186         for (m = 0; m < DIM; m++)
187         {
188             g_x[m] = pgrp->x[m] - pcrd->vec[m]*(pcrd->init + pcrd->rate*t);
189         }
190
191         /* loop over all atoms in the main ref group */
192         for (i = 0; i < pref->nat; i++)
193         {
194             ii = pref->ind[i];
195             if (ga2la)
196             {
197                 if (!ga2la_get_home(ga2la, pref->ind[i], &ii))
198                 {
199                     ii = -1;
200                 }
201             }
202             if (ii >= start && ii < end)
203             {
204                 pbc_dx_aiuc(pbc, x[ii], g_x, dx);
205                 inp = iprod(dir, dx);
206                 dr2 = 0;
207                 for (m = 0; m < DIM; m++)
208                 {
209                     dr2 += dsqr(dx[m] - inp*dir[m]);
210                 }
211
212                 if (dr2 < r0_2)
213                 {
214                     /* add to index, to sum of COM, to weight array */
215                     if (pdyna->nat_loc >= pdyna->nalloc_loc)
216                     {
217                         pdyna->nalloc_loc = over_alloc_large(pdyna->nat_loc+1);
218                         srenew(pdyna->ind_loc, pdyna->nalloc_loc);
219                         srenew(pdyna->weight_loc, pdyna->nalloc_loc);
220                     }
221                     pdyna->ind_loc[pdyna->nat_loc] = ii;
222                     mass   = md->massT[ii];
223                     weight = get_weight(sqrt(dr2), pull->cyl_r1, pull->cyl_r0);
224                     pdyna->weight_loc[pdyna->nat_loc] = weight;
225                     sum_a += mass*weight*inp;
226                     if (xp)
227                     {
228                         pbc_dx_aiuc(pbc, xp[ii], g_x, dx);
229                         inp     = iprod(dir, dx);
230                         sum_ap += mass*weight*inp;
231                     }
232                     wmass  += mass*weight;
233                     wwmass += mass*sqr(weight);
234                     pdyna->nat_loc++;
235                 }
236             }
237         }
238         pull->dbuf_cyl[c*4+0] = wmass;
239         pull->dbuf_cyl[c*4+1] = wwmass;
240         pull->dbuf_cyl[c*4+2] = sum_a;
241         pull->dbuf_cyl[c*4+3] = sum_ap;
242     }
243
244     if (cr && PAR(cr))
245     {
246         /* Sum the contributions over the nodes */
247         gmx_sumd(pull->ncoord*4, pull->dbuf_cyl, cr);
248     }
249
250     for (c = 0; c < pull->ncoord; c++)
251     {
252         pcrd  = &pull->coord[c];
253
254         pdyna = &pull->dyna[c];
255         pgrp  = &pull->group[pcrd->group[1]];
256
257         wmass         = pull->dbuf_cyl[c*4+0];
258         wwmass        = pull->dbuf_cyl[c*4+1];
259         pdyna->wscale = wmass/wwmass;
260         pdyna->invtm  = 1.0/(pdyna->wscale*wmass);
261
262         for (m = 0; m < DIM; m++)
263         {
264             g_x[m]      = pgrp->x[m] - pcrd->vec[m]*(pcrd->init + pcrd->rate*t);
265             pdyna->x[m] = g_x[m] + pcrd->vec[m]*pull->dbuf_cyl[c*4+2]/wmass;
266             if (xp)
267             {
268                 pdyna->xp[m] = g_x[m] + pcrd->vec[m]*pull->dbuf_cyl[c*4+3]/wmass;
269             }
270         }
271
272         if (debug)
273         {
274             fprintf(debug, "Pull cylinder group %d:%8.3f%8.3f%8.3f m:%8.3f\n",
275                     c, pdyna->x[0], pdyna->x[1],
276                     pdyna->x[2], 1.0/pdyna->invtm);
277         }
278     }
279 }
280
281 static double atan2_0_2pi(double y, double x)
282 {
283     double a;
284
285     a = atan2(y, x);
286     if (a < 0)
287     {
288         a += 2.0*M_PI;
289     }
290     return a;
291 }
292
293 /* calculates center of mass of selection index from all coordinates x */
294 void pull_calc_coms(t_commrec *cr,
295                     t_pull *pull, t_mdatoms *md, t_pbc *pbc, double t,
296                     rvec x[], rvec *xp)
297 {
298     int           g, i, ii, m;
299     real          mass, w, wm, twopi_box = 0;
300     double        wmass, wwmass, invwmass;
301     dvec          com, comp;
302     double        cm, sm, cmp, smp, ccm, csm, ssm, csw, snw;
303     rvec         *xx[2], x_pbc = {0, 0, 0}, dx;
304     t_pull_group *pgrp;
305
306     if (pull->rbuf == NULL)
307     {
308         snew(pull->rbuf, pull->ngroup);
309     }
310     if (pull->dbuf == NULL)
311     {
312         snew(pull->dbuf, 3*pull->ngroup);
313     }
314
315     if (pull->bRefAt)
316     {
317         pull_set_pbcatoms(cr, pull, md, x, pull->rbuf);
318     }
319
320     if (pull->cosdim >= 0)
321     {
322         for (m = pull->cosdim+1; m < pull->npbcdim; m++)
323         {
324             if (pbc->box[m][pull->cosdim] != 0)
325             {
326                 gmx_fatal(FARGS, "Can not do cosine weighting for trilinic dimensions");
327             }
328         }
329         twopi_box = 2.0*M_PI/pbc->box[pull->cosdim][pull->cosdim];
330     }
331
332     for (g = 0; g < pull->ngroup; g++)
333     {
334         pgrp = &pull->group[g];
335         clear_dvec(com);
336         clear_dvec(comp);
337         wmass  = 0;
338         wwmass = 0;
339         cm     = 0;
340         sm     = 0;
341         cmp    = 0;
342         smp    = 0;
343         ccm    = 0;
344         csm    = 0;
345         ssm    = 0;
346         if (!(g == 0 && PULL_CYL(pull)))
347         {
348             if (pgrp->epgrppbc == epgrppbcREFAT)
349             {
350                 /* Set the pbc atom */
351                 copy_rvec(pull->rbuf[g], x_pbc);
352             }
353             w = 1;
354             for (i = 0; i < pgrp->nat_loc; i++)
355             {
356                 ii   = pgrp->ind_loc[i];
357                 mass = md->massT[ii];
358                 if (pgrp->epgrppbc != epgrppbcCOS)
359                 {
360                     if (pgrp->weight_loc)
361                     {
362                         w = pgrp->weight_loc[i];
363                     }
364                     wm      = w*mass;
365                     wmass  += wm;
366                     wwmass += wm*w;
367                     if (pgrp->epgrppbc == epgrppbcNONE)
368                     {
369                         /* Plain COM: sum the coordinates */
370                         for (m = 0; m < DIM; m++)
371                         {
372                             com[m]    += wm*x[ii][m];
373                         }
374                         if (xp)
375                         {
376                             for (m = 0; m < DIM; m++)
377                             {
378                                 comp[m] += wm*xp[ii][m];
379                             }
380                         }
381                     }
382                     else
383                     {
384                         /* Sum the difference with the reference atom */
385                         pbc_dx(pbc, x[ii], x_pbc, dx);
386                         for (m = 0; m < DIM; m++)
387                         {
388                             com[m]    += wm*dx[m];
389                         }
390                         if (xp)
391                         {
392                             /* For xp add the difference between xp and x to dx,
393                              * such that we use the same periodic image,
394                              * also when xp has a large displacement.
395                              */
396                             for (m = 0; m < DIM; m++)
397                             {
398                                 comp[m] += wm*(dx[m] + xp[ii][m] - x[ii][m]);
399                             }
400                         }
401                     }
402                 }
403                 else
404                 {
405                     /* Determine cos and sin sums */
406                     csw  = cos(x[ii][pull->cosdim]*twopi_box);
407                     snw  = sin(x[ii][pull->cosdim]*twopi_box);
408                     cm  += csw*mass;
409                     sm  += snw*mass;
410                     ccm += csw*csw*mass;
411                     csm += csw*snw*mass;
412                     ssm += snw*snw*mass;
413
414                     if (xp)
415                     {
416                         csw  = cos(xp[ii][pull->cosdim]*twopi_box);
417                         snw  = sin(xp[ii][pull->cosdim]*twopi_box);
418                         cmp += csw*mass;
419                         smp += snw*mass;
420                     }
421                 }
422             }
423         }
424
425         /* Copy local sums to a buffer for global summing */
426         switch (pgrp->epgrppbc)
427         {
428             case epgrppbcNONE:
429             case epgrppbcREFAT:
430                 copy_dvec(com, pull->dbuf[g*3]);
431                 copy_dvec(comp, pull->dbuf[g*3+1]);
432                 pull->dbuf[g*3+2][0] = wmass;
433                 pull->dbuf[g*3+2][1] = wwmass;
434                 pull->dbuf[g*3+2][2] = 0;
435                 break;
436             case epgrppbcCOS:
437                 pull->dbuf[g*3  ][0] = cm;
438                 pull->dbuf[g*3  ][1] = sm;
439                 pull->dbuf[g*3  ][2] = 0;
440                 pull->dbuf[g*3+1][0] = ccm;
441                 pull->dbuf[g*3+1][1] = csm;
442                 pull->dbuf[g*3+1][2] = ssm;
443                 pull->dbuf[g*3+2][0] = cmp;
444                 pull->dbuf[g*3+2][1] = smp;
445                 pull->dbuf[g*3+2][2] = 0;
446                 break;
447         }
448     }
449
450     if (cr && PAR(cr))
451     {
452         /* Sum the contributions over the nodes */
453         gmx_sumd(pull->ngroup*3*DIM, pull->dbuf[0], cr);
454     }
455
456     for (g = 0; g < pull->ngroup; g++)
457     {
458         pgrp = &pull->group[g];
459         if (pgrp->nat > 0 && !(g == 0 && PULL_CYL(pull)))
460         {
461             if (pgrp->epgrppbc != epgrppbcCOS)
462             {
463                 /* Determine the inverse mass */
464                 wmass    = pull->dbuf[g*3+2][0];
465                 wwmass   = pull->dbuf[g*3+2][1];
466                 invwmass = 1/wmass;
467                 /* invtm==0 signals a frozen group, so then we should keep it zero */
468                 if (pgrp->invtm > 0)
469                 {
470                     pgrp->wscale = wmass/wwmass;
471                     pgrp->invtm  = 1.0/(pgrp->wscale*wmass);
472                 }
473                 /* Divide by the total mass */
474                 for (m = 0; m < DIM; m++)
475                 {
476                     pgrp->x[m]    = pull->dbuf[g*3  ][m]*invwmass;
477                     if (xp)
478                     {
479                         pgrp->xp[m] = pull->dbuf[g*3+1][m]*invwmass;
480                     }
481                     if (pgrp->epgrppbc == epgrppbcREFAT)
482                     {
483                         pgrp->x[m]    += pull->rbuf[g][m];
484                         if (xp)
485                         {
486                             pgrp->xp[m] += pull->rbuf[g][m];
487                         }
488                     }
489                 }
490             }
491             else
492             {
493                 /* Determine the optimal location of the cosine weight */
494                 csw                   = pull->dbuf[g*3][0];
495                 snw                   = pull->dbuf[g*3][1];
496                 pgrp->x[pull->cosdim] = atan2_0_2pi(snw, csw)/twopi_box;
497                 /* Set the weights for the local atoms */
498                 wmass  = sqrt(csw*csw + snw*snw);
499                 wwmass = (pull->dbuf[g*3+1][0]*csw*csw +
500                           pull->dbuf[g*3+1][1]*csw*snw +
501                           pull->dbuf[g*3+1][2]*snw*snw)/(wmass*wmass);
502                 pgrp->wscale = wmass/wwmass;
503                 pgrp->invtm  = 1.0/(pgrp->wscale*wmass);
504                 /* Set the weights for the local atoms */
505                 csw *= pgrp->invtm;
506                 snw *= pgrp->invtm;
507                 for (i = 0; i < pgrp->nat_loc; i++)
508                 {
509                     ii                  = pgrp->ind_loc[i];
510                     pgrp->weight_loc[i] = csw*cos(twopi_box*x[ii][pull->cosdim]) +
511                         snw*sin(twopi_box*x[ii][pull->cosdim]);
512                 }
513                 if (xp)
514                 {
515                     csw                    = pull->dbuf[g*3+2][0];
516                     snw                    = pull->dbuf[g*3+2][1];
517                     pgrp->xp[pull->cosdim] = atan2_0_2pi(snw, csw)/twopi_box;
518                 }
519             }
520             if (debug)
521             {
522                 fprintf(debug, "Pull group %d wmass %f wwmass %f invtm %f\n",
523                         g, wmass, wwmass, pgrp->invtm);
524             }
525         }
526     }
527
528     if (PULL_CYL(pull))
529     {
530         /* Calculate the COMs for the cyclinder reference groups */
531         make_cyl_refgrps(cr, pull, md, pbc, t, x, xp);
532     }
533 }