Merge release-4-6 into release-5-0
[alexxy/gromacs.git] / src / gromacs / gmxpreprocess / readpull.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 #ifdef HAVE_CONFIG_H
38 #include <config.h>
39 #endif
40
41 #include <string.h>
42 #include <stdlib.h>
43
44 #include "gromacs/utility/cstringutil.h"
45 #include "sysstuff.h"
46 #include "princ.h"
47 #include "gromacs/fileio/futil.h"
48 #include "vec.h"
49 #include "gromacs/utility/smalloc.h"
50 #include "typedefs.h"
51 #include "names.h"
52 #include "gmx_fatal.h"
53 #include "macros.h"
54 #include "index.h"
55 #include "symtab.h"
56 #include "readinp.h"
57 #include "readir.h"
58 #include "mdatoms.h"
59 #include "pbc.h"
60 #include "gromacs/pulling/pull.h"
61
62
63 static char pulldim[STRLEN];
64
65 static void string2dvec(const char buf[], dvec nums)
66 {
67     double dum;
68
69     if (sscanf(buf, "%lf%lf%lf%lf", &nums[0], &nums[1], &nums[2], &dum) != 3)
70     {
71         gmx_fatal(FARGS, "Expected three numbers at input line %s", buf);
72     }
73 }
74
75 static void init_pull_group(t_pull_group *pg,
76                             const char   *wbuf)
77 {
78     double d;
79     int    n, m;
80
81     pg->nweight = 0;
82     while (sscanf(wbuf, "%lf %n", &d, &n) == 1)
83     {
84         if (pg->nweight % 100 == 0)
85         {
86             srenew(pg->weight, pg->nweight+100);
87         }
88         pg->weight[pg->nweight++] = d;
89         wbuf += n;
90     }
91 }
92
93 static void init_pull_coord(t_pull_coord *pcrd, int eGeom,
94                             const char *origin_buf, const char *vec_buf)
95 {
96     int    m;
97     dvec   origin, vec;
98
99     string2dvec(origin_buf, origin);
100     if (pcrd->group[0] != 0 && dnorm(origin) > 0)
101     {
102         gmx_fatal(FARGS, "The pull origin can only be set with an absolute reference");
103     }
104
105     if (eGeom == epullgDIST)
106     {
107         clear_dvec(vec);
108     }
109     else
110     {
111         string2dvec(vec_buf, vec);
112         if (eGeom == epullgDIR || eGeom == epullgCYL)
113         {
114             /* Normalize the direction vector */
115             dsvmul(1/dnorm(vec), vec, vec);
116         }
117     }
118     for (m = 0; m < DIM; m++)
119     {
120         pcrd->origin[m] = origin[m];
121         pcrd->vec[m]    = vec[m];
122     }
123 }
124
125 char **read_pullparams(int *ninp_p, t_inpfile **inp_p,
126                        t_pull *pull, gmx_bool *bStart,
127                        warninp_t wi)
128 {
129     int           ninp, nerror = 0, i, nchar, nscan, m, idum;
130     t_inpfile    *inp;
131     const char   *tmp;
132     char        **grpbuf;
133     char          dummy[STRLEN], buf[STRLEN], groups[STRLEN], init[STRLEN];
134     const char   *init_def1 = "0.0", *init_def3 = "0.0 0.0 0.0";
135     char          wbuf[STRLEN], origin_buf[STRLEN], vec_buf[STRLEN];
136
137     t_pull_group *pgrp;
138     t_pull_coord *pcrd;
139
140     ninp   = *ninp_p;
141     inp    = *inp_p;
142
143     /* read pull parameters */
144     CTYPE("Pull geometry: distance, direction, direction-periodic or cylinder");
145     EETYPE("pull-geometry",   pull->eGeom, epullg_names);
146     CTYPE("Select components for the pull vector. default: Y Y Y");
147     STYPE("pull-dim",         pulldim, "Y Y Y");
148     CTYPE("Cylinder radius for dynamic reaction force groups (nm)");
149     RTYPE("pull-r1",          pull->cyl_r1, 1.0);
150     CTYPE("Switch from r1 to r0 in case of dynamic reaction force");
151     RTYPE("pull-r0",          pull->cyl_r0, 1.5);
152     RTYPE("pull_constr_tol",  pull->constr_tol, 1E-6);
153     EETYPE("pull-start",      *bStart, yesno_names);
154     EETYPE("pull-print-reference", pull->bPrintRef, yesno_names);
155     ITYPE("pull-nstxout",     pull->nstxout, 10);
156     ITYPE("pull-nstfout",     pull->nstfout,  1);
157     CTYPE("Number of pull groups");
158     ITYPE("pull-ngroups",     pull->ngroup, 1);
159     CTYPE("Number of pull coordinates");
160     ITYPE("pull-ncoords",     pull->ncoord, 1);
161
162     if (pull->cyl_r1 > pull->cyl_r0)
163     {
164         warning_error(wi, "pull-r1 > pull_r0");
165     }
166
167     if (pull->ngroup < 1)
168     {
169         gmx_fatal(FARGS, "pull-ngroups should be >= 1");
170     }
171     /* We always add an absolute reference group (index 0), even if not used */
172     pull->ngroup += 1;
173
174     if (pull->ncoord < 1)
175     {
176         gmx_fatal(FARGS, "pull-ncoords should be >= 1");
177     }
178
179     snew(pull->group, pull->ngroup);
180
181     snew(pull->coord, pull->ncoord);
182
183     /* pull group options */
184     CTYPE("Group name, weight (default all 1), vector, init, rate (nm/ps), kJ/(mol*nm^2)");
185
186     /* Read the pull groups */
187     snew(grpbuf, pull->ngroup);
188     /* Group 0 is the absolute reference, we don't read anything for 0 */
189     for (i = 1; i < pull->ngroup; i++)
190     {
191         pgrp = &pull->group[i];
192         snew(grpbuf[i], STRLEN);
193         sprintf(buf, "pull-group%d-name", i);
194         STYPE(buf,              grpbuf[i], "");
195         sprintf(buf, "pull-group%d-weights", i);
196         STYPE(buf,              wbuf, "");
197         sprintf(buf, "pull-group%d-pbcatom", i);
198         ITYPE(buf,              pgrp->pbcatom, 0);
199
200         /* Initialize the pull group */
201         init_pull_group(pgrp, wbuf);
202     }
203
204     /* Read the pull coordinates */
205     for (i = 1; i < pull->ncoord + 1; i++)
206     {
207         pcrd = &pull->coord[i-1];
208         sprintf(buf, "pull-coord%d-groups", i);
209         STYPE(buf,              groups, "");
210         nscan = sscanf(groups, "%d %d %d", &pcrd->group[0], &pcrd->group[1], &idum);
211         if (nscan != 2)
212         {
213             fprintf(stderr, "ERROR: %s should have %d components\n", buf, 2);
214             nerror++;
215         }
216         sprintf(buf, "pull-coord%d-origin", i);
217         STYPE(buf,              origin_buf, "0.0 0.0 0.0");
218         sprintf(buf, "pull-coord%d-vec", i);
219         STYPE(buf,              vec_buf,    "0.0 0.0 0.0");
220         sprintf(buf, "pull-coord%d-init", i);
221         RTYPE(buf,              pcrd->init, 0.0);
222         sprintf(buf, "pull-coord%d-rate", i);
223         RTYPE(buf,              pcrd->rate, 0.0);
224         sprintf(buf, "pull-coord%d-k", i);
225         RTYPE(buf,              pcrd->k, 0.0);
226         sprintf(buf, "pull-coord%d-kB", i);
227         RTYPE(buf,              pcrd->kB, pcrd->k);
228
229         /* Initialize the pull coordinate */
230         init_pull_coord(pcrd, pull->eGeom, origin_buf, vec_buf);
231     }
232
233     *ninp_p   = ninp;
234     *inp_p    = inp;
235
236     return grpbuf;
237 }
238
239 void make_pull_groups(t_pull *pull,
240                       char **pgnames,
241                       const t_blocka *grps, char **gnames)
242 {
243     int           g, ig = -1, i;
244     t_pull_group *pgrp;
245
246     /* Absolute reference group (might not be used) is special */
247     pgrp          = &pull->group[0];
248     pgrp->nat     = 0;
249     pgrp->pbcatom = -1;
250
251     for (g = 1; g < pull->ngroup; g++)
252     {
253         pgrp = &pull->group[g];
254
255         ig        = search_string(pgnames[g], grps->nr, gnames);
256         pgrp->nat = grps->index[ig+1] - grps->index[ig];
257
258         fprintf(stderr, "Pull group %d '%s' has %d atoms\n",
259                 g, pgnames[g], pgrp->nat);
260
261         if (pgrp->nat == 0)
262         {
263             gmx_fatal(FARGS, "Pull group %d '%s' is empty", g, pgnames[g]);
264         }
265
266         snew(pgrp->ind, pgrp->nat);
267         for (i = 0; i < pgrp->nat; i++)
268         {
269             pgrp->ind[i] = grps->a[grps->index[ig]+i];
270         }
271
272         if (pull->eGeom == epullgCYL && g == 1 && pgrp->nweight > 0)
273         {
274             gmx_fatal(FARGS, "Weights are not supported for the reference group with cylinder pulling");
275         }
276         if (pgrp->nweight > 0 && pgrp->nweight != pgrp->nat)
277         {
278             gmx_fatal(FARGS, "Number of weights (%d) for pull group %d '%s' does not match the number of atoms (%d)",
279                       pgrp->nweight, g, pgnames[g], pgrp->nat);
280         }
281
282         if (pgrp->nat == 1)
283         {
284             /* No pbc is required for this group */
285             pgrp->pbcatom = -1;
286         }
287         else
288         {
289             if (pgrp->pbcatom > 0)
290             {
291                 pgrp->pbcatom -= 1;
292             }
293             else if (pgrp->pbcatom == 0)
294             {
295                 pgrp->pbcatom = pgrp->ind[(pgrp->nat-1)/2];
296             }
297             else
298             {
299                 /* Use cosine weighting */
300                 pgrp->pbcatom = -1;
301             }
302         }
303     }
304 }
305
306 void make_pull_coords(t_pull *pull)
307 {
308     int           ndim, d, nchar, c;
309     char         *ptr, pulldim1[STRLEN];
310     t_pull_coord *pcrd;
311
312     ptr  = pulldim;
313     ndim = 0;
314     for (d = 0; d < DIM; d++)
315     {
316         if (sscanf(ptr, "%s%n", pulldim1, &nchar) != 1)
317         {
318             gmx_fatal(FARGS, "Less than 3 pull dimensions given in pull_dim: '%s'",
319                       pulldim);
320         }
321
322         if (gmx_strncasecmp(pulldim1, "N", 1) == 0)
323         {
324             pull->dim[d] = 0;
325         }
326         else if (gmx_strncasecmp(pulldim1, "Y", 1) == 0)
327         {
328             pull->dim[d] = 1;
329             ndim++;
330         }
331         else
332         {
333             gmx_fatal(FARGS, "Please use Y(ES) or N(O) for pull_dim only (not %s)",
334                       pulldim1);
335         }
336         ptr += nchar;
337     }
338     if (ndim == 0)
339     {
340         gmx_fatal(FARGS, "All entries in pull_dim are N");
341     }
342
343     for (c = 0; c < pull->ncoord; c++)
344     {
345         pcrd = &pull->coord[c];
346
347         if (pcrd->group[0] < 0 || pcrd->group[0] >= pull->ngroup ||
348             pcrd->group[1] < 0 || pcrd->group[1] >= pull->ngroup)
349         {
350             gmx_fatal(FARGS, "Pull group index in pull-coord%d-groups out of range, should be between %d and %d", c+1, 0, pull->ngroup+1);
351         }
352
353         if (pcrd->group[0] == pcrd->group[1])
354         {
355             gmx_fatal(FARGS, "Identical pull group indices in pull-coord%d-groups", c+1);
356         }
357
358         if (pull->eGeom == epullgCYL && pcrd->group[0] != 1)
359         {
360             gmx_fatal(FARGS, "With pull geometry %s, the first pull group should always be 1", EPULLGEOM(pull->eGeom));
361         }
362
363         if (pull->eGeom != epullgDIST)
364         {
365             for (d = 0; d < DIM; d++)
366             {
367                 if (pcrd->vec[d] != 0 && pull->dim[d] == 0)
368                 {
369                     gmx_fatal(FARGS, "ERROR: pull-group%d-vec has non-zero %c-component while pull_dim for the %c-dimension is N\n", c+1, 'x'+d, 'x'+d);
370                 }
371             }
372         }
373
374         if ((pull->eGeom == epullgDIR || pull->eGeom == epullgCYL) &&
375             norm2(pcrd->vec) == 0)
376         {
377             gmx_fatal(FARGS, "pull-group%d-vec can not be zero with geometry %s",
378                       c+1, EPULLGEOM(pull->eGeom));
379         }
380     }
381 }
382
383 void set_pull_init(t_inputrec *ir, gmx_mtop_t *mtop, rvec *x, matrix box, real lambda,
384                    const output_env_t oenv, gmx_bool bStart)
385 {
386     t_mdatoms    *md;
387     t_pull       *pull;
388     t_pull_coord *pcrd;
389     t_pull_group *pgrp0, *pgrp1;
390     t_pbc         pbc;
391     int           c, m;
392     double        t_start, tinvrate;
393     real          init;
394     dvec          dr;
395     double        dev;
396
397     init_pull(NULL, ir, 0, NULL, mtop, NULL, oenv, lambda, FALSE, 0);
398     md = init_mdatoms(NULL, mtop, ir->efep);
399     atoms2md(mtop, ir, 0, NULL, mtop->natoms, md);
400     if (ir->efep)
401     {
402         update_mdatoms(md, lambda);
403     }
404     pull = ir->pull;
405
406     set_pbc(&pbc, ir->ePBC, box);
407
408     t_start = ir->init_t + ir->init_step*ir->delta_t;
409
410     pull_calc_coms(NULL, pull, md, &pbc, t_start, x, NULL);
411
412     fprintf(stderr, "Pull group  natoms  pbc atom  distance at start     reference at t=0\n");
413     for (c = 0; c < pull->ncoord; c++)
414     {
415         pcrd  = &pull->coord[c];
416
417         pgrp0 = &pull->group[pcrd->group[0]];
418         pgrp1 = &pull->group[pcrd->group[1]];
419         fprintf(stderr, "%8d  %8d  %8d\n",
420                 pcrd->group[0], pgrp0->nat, pgrp0->pbcatom+1);
421         fprintf(stderr, "%8d  %8d  %8d ",
422                 pcrd->group[1], pgrp1->nat, pgrp1->pbcatom+1);
423
424         init       = pcrd->init;
425         pcrd->init = 0;
426
427         if (pcrd->rate == 0)
428         {
429             tinvrate = 0;
430         }
431         else
432         {
433             tinvrate = t_start/pcrd->rate;
434         }
435         get_pull_coord_distance(pull, c, &pbc, 0, dr, &dev);
436         fprintf(stderr, " %6.3f ", dev);
437
438         if (bStart)
439         {
440             pcrd->init = init + dev - tinvrate;
441         }
442         else
443         {
444             pcrd->init = init;
445         }
446         fprintf(stderr, " %6.3f\n", pcrd->init);
447     }
448 }