33db83ee49aa90a11fe2897cea52118e38fdcfef
[alexxy/gromacs.git] / src / gromacs / gmxpreprocess / toputil.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) 2012,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 <math.h>
42 #include <string.h>
43
44 #include "gromacs/utility/smalloc.h"
45 #include "sysstuff.h"
46 #include "macros.h"
47 #include "topdirs.h"
48 #include "toputil.h"
49 #include "symtab.h"
50 #include "gmx_fatal.h"
51 #include "gpp_atomtype.h"
52
53 /* UTILITIES */
54
55 void set_p_string(t_param *p, const char *s)
56 {
57     if (s)
58     {
59         if (strlen(s) < sizeof(p->s)-1)
60         {
61             strncpy(p->s, s, sizeof(p->s));
62         }
63         else
64         {
65             gmx_fatal(FARGS, "Increase MAXSLEN in include/grompp-impl.h to at least %d,"
66                       " or shorten your definition of bonds like %s to at most %d",
67                       strlen(s)+1, s, MAXSLEN-1);
68         }
69     }
70     else
71     {
72         strcpy(p->s, "");
73     }
74 }
75
76 void pr_alloc (int extra, t_params *pr)
77 {
78     int i, j;
79
80     /* get new space for arrays */
81     if (extra < 0)
82     {
83         gmx_fatal(FARGS, "Trying to make array smaller.\n");
84     }
85     if (extra == 0)
86     {
87         return;
88     }
89     if ((pr->nr == 0) && (pr->param != NULL))
90     {
91         fprintf(stderr, "Warning: dangling pointer at %lx\n",
92                 (unsigned long)pr->param);
93         pr->param = NULL;
94     }
95     if (pr->nr+extra > pr->maxnr)
96     {
97         pr->maxnr = max(1.2*pr->maxnr, pr->maxnr + extra);
98         srenew(pr->param, pr->maxnr);
99         for (i = pr->nr; (i < pr->maxnr); i++)
100         {
101             for (j = 0; (j < MAXATOMLIST); j++)
102             {
103                 pr->param[i].a[j] = 0;
104             }
105             for (j = 0; (j < MAXFORCEPARAM); j++)
106             {
107                 pr->param[i].c[j] = 0;
108             }
109             set_p_string(&(pr->param[i]), "");
110         }
111     }
112 }
113
114 void init_plist(t_params plist[])
115 {
116     int i;
117
118     for (i = 0; (i < F_NRE); i++)
119     {
120         plist[i].nr    = 0;
121         plist[i].maxnr = 0;
122         plist[i].param = NULL;
123
124         /* CMAP */
125         plist[i].ncmap        = 0;
126         plist[i].cmap         = NULL;
127         plist[i].grid_spacing = 0;
128         plist[i].nc           = 0;
129         plist[i].nct          = 0;
130         plist[i].cmap_types   = NULL;
131     }
132 }
133
134 void cp_param(t_param *dest, t_param *src)
135 {
136     int j;
137
138     for (j = 0; (j < MAXATOMLIST); j++)
139     {
140         dest->a[j] = src->a[j];
141     }
142     for (j = 0; (j < MAXFORCEPARAM); j++)
143     {
144         dest->c[j] = src->c[j];
145     }
146     strncpy(dest->s, src->s, sizeof(dest->s));
147 }
148
149 void add_param_to_list(t_params *list, t_param *b)
150 {
151     int j;
152
153     /* allocate one position extra */
154     pr_alloc (1, list);
155
156     /* fill the arrays */
157     for (j = 0; (j < MAXFORCEPARAM); j++)
158     {
159         list->param[list->nr].c[j]   = b->c[j];
160     }
161     for (j = 0; (j < MAXATOMLIST); j++)
162     {
163         list->param[list->nr].a[j]   = b->a[j];
164     }
165     memset(list->param[list->nr].s, 0, sizeof(list->param[list->nr].s));
166
167     list->nr++;
168 }
169
170
171 void init_molinfo(t_molinfo *mol)
172 {
173     mol->nrexcl     = 0;
174     mol->excl_set   = FALSE;
175     mol->bProcessed = FALSE;
176     init_plist(mol->plist);
177     init_block(&mol->cgs);
178     init_block(&mol->mols);
179     init_blocka(&mol->excls);
180     init_atom(&mol->atoms);
181 }
182
183 /* FREEING MEMORY */
184
185 void done_bt (t_params *pl)
186 {
187     sfree(pl->param);
188 }
189
190 void done_mi(t_molinfo *mi)
191 {
192     int i;
193
194     done_atom (&(mi->atoms));
195     done_block(&(mi->cgs));
196     done_block(&(mi->mols));
197     for (i = 0; (i < F_NRE); i++)
198     {
199         done_bt(&(mi->plist[i]));
200     }
201 }
202
203 /* PRINTING STRUCTURES */
204
205 void print_bt(FILE *out, directive d, gpp_atomtype_t at,
206               int ftype, int fsubtype, t_params plist[],
207               gmx_bool bFullDih)
208 {
209     /* This dihp is a DIRTY patch because the dih-types do not use
210      * all four atoms to determine the type.
211      */
212     const int    dihp[2][2] = { { 1, 2 }, { 0, 3 } };
213     t_params    *bt;
214     int          i, j, f, nral, nrfp;
215     gmx_bool     bDih = FALSE, bSwapParity;
216
217     bt = &(plist[ftype]);
218
219     if (!bt->nr)
220     {
221         return;
222     }
223
224     f = 0;
225     switch (ftype)
226     {
227         case F_G96ANGLES:
228             f = 1;
229             break;
230         case F_G96BONDS:
231             f = 1;
232             break;
233         case F_MORSE:
234             f = 2;
235             break;
236         case F_CUBICBONDS:
237             f = 3;
238             break;
239         case F_CONNBONDS:
240             f = 4;
241             break;
242         case F_HARMONIC:
243             f = 5;
244             break;
245         case F_CROSS_BOND_ANGLES:
246             f = 2;
247             break;
248         case F_CROSS_BOND_BONDS:
249             f = 3;
250             break;
251         case F_UREY_BRADLEY:
252             f = 4;
253             break;
254         case F_PDIHS:
255         case F_RBDIHS:
256         case F_FOURDIHS:
257             bDih = TRUE;
258             break;
259         case F_IDIHS:
260             f    = 1;
261             bDih = TRUE;
262             break;
263         case F_CONSTRNC:
264             f = 1;
265             break;
266         case F_VSITE3FD:
267             f = 1;
268             break;
269         case F_VSITE3FAD:
270             f = 2;
271             break;
272         case F_VSITE3OUT:
273             f = 3;
274             break;
275         case F_VSITE4FDN:
276             f = 1;
277             break;
278         case F_CMAP:
279             f = 1;
280             break;
281
282         default:
283             bDih = FALSE;
284     }
285     if (bFullDih)
286     {
287         bDih = FALSE;
288     }
289     if (fsubtype)
290     {
291         f = fsubtype-1;
292     }
293
294     nral = NRAL(ftype);
295     nrfp = NRFP(ftype);
296
297     /* header */
298     fprintf(out, "[ %s ]\n", dir2str(d));
299     fprintf(out, "; ");
300     if (!bDih)
301     {
302         fprintf (out, "%3s  %4s", "ai", "aj");
303         for (j = 2; (j < nral); j++)
304         {
305             fprintf (out, "  %3c%c", 'a', 'i'+j);
306         }
307     }
308     else
309     {
310         for (j = 0; (j < 2); j++)
311         {
312             fprintf (out, "%3c%c", 'a', 'i'+dihp[f][j]);
313         }
314     }
315
316     fprintf (out, " funct");
317     for (j = 0; (j < nrfp); j++)
318     {
319         fprintf (out, " %12c%1d", 'c', j);
320     }
321     fprintf (out, "\n");
322
323     /* print bondtypes */
324     for (i = 0; (i < bt->nr); i++)
325     {
326         bSwapParity = (bt->param[i].C0 == NOTSET) && (bt->param[i].C1 == -1);
327         if (!bDih)
328         {
329             for (j = 0; (j < nral); j++)
330             {
331                 fprintf (out, "%5s ", get_atomtype_name(bt->param[i].a[j], at));
332             }
333         }
334         else
335         {
336             for (j = 0; (j < 2); j++)
337             {
338                 fprintf (out, "%5s ", get_atomtype_name(bt->param[i].a[dihp[f][j]], at));
339             }
340         }
341         fprintf (out, "%5d ", bSwapParity ? -f-1 : f+1);
342
343         if (bt->param[i].s[0])
344         {
345             fprintf(out, "   %s", bt->param[i].s);
346         }
347         else
348         {
349             for (j = 0; (j < nrfp && (bt->param[i].c[j] != NOTSET)); j++)
350             {
351                 fprintf (out, "%13.6e ", bt->param[i].c[j]);
352             }
353         }
354
355         fprintf (out, "\n");
356     }
357     fprintf (out, "\n");
358     fflush (out);
359 }
360
361 void print_blocka(FILE *out, const char *szName,
362                   const char *szIndex, const char *szA,
363                   t_blocka *block)
364 {
365     int i, j;
366
367     fprintf (out, "; %s\n", szName);
368     fprintf (out, "; %4s    %s\n", szIndex, szA);
369     for (i = 0; (i < block->nr); i++)
370     {
371         for (i = 0; (i < block->nr); i++)
372         {
373             fprintf (out, "%6d", i+1);
374             for (j = block->index[i]; (j < ((int)block->index[i+1])); j++)
375             {
376                 fprintf (out, "%5d", block->a[j]+1);
377             }
378             fprintf (out, "\n");
379         }
380         fprintf (out, "\n");
381     }
382 }
383
384 void print_excl(FILE *out, int natoms, t_excls excls[])
385 {
386     atom_id     i;
387     gmx_bool    have_excl;
388     int         j;
389
390     have_excl = FALSE;
391     for (i = 0; i < natoms && !have_excl; i++)
392     {
393         have_excl = (excls[i].nr > 0);
394     }
395
396     if (have_excl)
397     {
398         fprintf (out, "[ %s ]\n", dir2str(d_exclusions));
399         fprintf (out, "; %4s    %s\n", "i", "excluded from i");
400         for (i = 0; i < natoms; i++)
401         {
402             if (excls[i].nr > 0)
403             {
404                 fprintf (out, "%6d ", i+1);
405                 for (j = 0; j < excls[i].nr; j++)
406                 {
407                     fprintf (out, " %5d", excls[i].e[j]+1);
408                 }
409                 fprintf (out, "\n");
410             }
411         }
412         fprintf (out, "\n");
413         fflush(out);
414     }
415 }
416
417 static double get_residue_charge(const t_atoms *atoms, int at)
418 {
419     int    ri;
420     double q;
421
422     ri = atoms->atom[at].resind;
423     q  = 0;
424     while (at < atoms->nr && atoms->atom[at].resind == ri)
425     {
426         q += atoms->atom[at].q;
427         at++;
428     }
429
430     return q;
431 }
432
433 void print_atoms(FILE *out, gpp_atomtype_t atype, t_atoms *at, int *cgnr,
434                  gmx_bool bRTPresname)
435 {
436     int         i, ri;
437     int         tpA, tpB;
438     const char *as;
439     char       *tpnmA, *tpnmB;
440     double      qres, qtot;
441
442     as = dir2str(d_atoms);
443     fprintf(out, "[ %s ]\n", as);
444     fprintf(out, "; %4s %10s %6s %7s%6s %6s %10s %10s %6s %10s %10s\n",
445             "nr", "type", "resnr", "residue", "atom", "cgnr", "charge", "mass", "typeB", "chargeB", "massB");
446
447     qtot  = 0;
448
449     if (debug)
450     {
451         fprintf(debug, "This molecule has %d atoms and %d residues\n",
452                 at->nr, at->nres);
453     }
454
455     if (at->nres)
456     {
457         /* if the information is present... */
458         for (i = 0; (i < at->nr); i++)
459         {
460             ri = at->atom[i].resind;
461             if ((i == 0 || ri != at->atom[i-1].resind) &&
462                 at->resinfo[ri].rtp != NULL)
463             {
464                 qres = get_residue_charge(at, i);
465                 fprintf(out, "; residue %3d %-3s rtp %-4s q ",
466                         at->resinfo[ri].nr,
467                         *at->resinfo[ri].name,
468                         *at->resinfo[ri].rtp);
469                 if (fabs(qres) < 0.001)
470                 {
471                     fprintf(out, " %s", "0.0");
472                 }
473                 else
474                 {
475                     fprintf(out, "%+3.1f", qres);
476                 }
477                 fprintf(out, "\n");
478             }
479             tpA = at->atom[i].type;
480             if ((tpnmA = get_atomtype_name(tpA, atype)) == NULL)
481             {
482                 gmx_fatal(FARGS, "tpA = %d, i= %d in print_atoms", tpA, i);
483             }
484
485             fprintf(out, "%6d %10s %6d%c %5s %6s %6d %10g %10g",
486                     i+1, tpnmA,
487                     at->resinfo[ri].nr,
488                     at->resinfo[ri].ic,
489                     bRTPresname ?
490                     *(at->resinfo[at->atom[i].resind].rtp) :
491                     *(at->resinfo[at->atom[i].resind].name),
492                     *(at->atomname[i]), cgnr[i],
493                     at->atom[i].q, at->atom[i].m);
494             if (PERTURBED(at->atom[i]))
495             {
496                 tpB = at->atom[i].typeB;
497                 if ((tpnmB = get_atomtype_name(tpB, atype)) == NULL)
498                 {
499                     gmx_fatal(FARGS, "tpB = %d, i= %d in print_atoms", tpB, i);
500                 }
501                 fprintf(out, " %6s %10g %10g",
502                         tpnmB, at->atom[i].qB, at->atom[i].mB);
503             }
504             qtot += (double)at->atom[i].q;
505             if (fabs(qtot) < 4*GMX_REAL_EPS)
506             {
507                 qtot = 0;
508             }
509             fprintf(out, "   ; qtot %.4g\n", qtot);
510         }
511     }
512     fprintf(out, "\n");
513     fflush(out);
514 }
515
516 void print_bondeds(FILE *out, int natoms, directive d,
517                    int ftype, int fsubtype, t_params plist[])
518 {
519     t_symtab       stab;
520     gpp_atomtype_t atype;
521     t_param       *param;
522     t_atom        *a;
523     int            i;
524
525     atype = init_atomtype();
526     snew(a, 1);
527     snew(param, 1);
528     open_symtab(&stab);
529     for (i = 0; (i < natoms); i++)
530     {
531         char buf[12];
532         sprintf(buf, "%4d", (i+1));
533         add_atomtype(atype, &stab, a, buf, param, 0, 0, 0, 0, 0, 0, 0);
534     }
535     print_bt(out, d, atype, ftype, fsubtype, plist, TRUE);
536
537     done_symtab(&stab);
538     sfree(a);
539     sfree(param);
540     done_atomtype(atype);
541 }