Move symtab.* to topology/
[gromacs.git] / src / gromacs / gmxpreprocess / gpp_atomtype.c
blob7febcfb4a474f42179cb440243e0ea4040c4daca
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-2004, The GROMACS development team.
6 * Copyright (c) 2011,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.
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 #ifdef HAVE_CONFIG_H
38 #include <config.h>
39 #endif
41 #include <math.h>
42 #include <string.h>
44 #include "topdirs.h"
45 #include "toputil.h"
46 #include "txtdump.h"
47 #include "gpp_atomtype.h"
49 #include "gromacs/topology/symtab.h"
50 #include "gromacs/utility/fatalerror.h"
51 #include "gromacs/utility/smalloc.h"
53 typedef struct gpp_atomtype {
54 int nr; /* The number of atomtypes */
55 t_atom *atom; /* Array of atoms */
56 char ***atomname; /* Names of the atomtypes */
57 t_param *nb; /* Nonbonded force default params */
58 int *bondatomtype; /* The bond_atomtype for each atomtype */
59 real *radius; /* Radius for GBSA stuff */
60 real *vol; /* Effective volume for GBSA */
61 real *surftens; /* Surface tension with water, for GBSA */
62 real *gb_radius; /* Radius for Still model */
63 real *S_hct; /* Overlap factor for HCT model */
64 int *atomnumber; /* Atomic number, used for QM/MM */
65 } t_gpp_atomtype;
67 int get_atomtype_type(const char *str, gpp_atomtype_t ga)
69 int i;
71 /* Atom types are always case sensitive */
72 for (i = 0; (i < ga->nr); i++)
74 if (strcmp(str, *(ga->atomname[i])) == 0)
76 return i;
80 return NOTSET;
83 int get_atomtype_ntypes(gpp_atomtype_t ga)
85 return ga->nr;
88 char *get_atomtype_name(int nt, gpp_atomtype_t ga)
90 if ((nt < 0) || (nt >= ga->nr))
92 return NULL;
95 return *(ga->atomname[nt]);
98 real get_atomtype_massA(int nt, gpp_atomtype_t ga)
100 if ((nt < 0) || (nt >= ga->nr))
102 return NOTSET;
105 return ga->atom[nt].m;
108 real get_atomtype_massB(int nt, gpp_atomtype_t ga)
110 if ((nt < 0) || (nt >= ga->nr))
112 return NOTSET;
115 return ga->atom[nt].mB;
118 real get_atomtype_qA(int nt, gpp_atomtype_t ga)
120 if ((nt < 0) || (nt >= ga->nr))
122 return NOTSET;
125 return ga->atom[nt].q;
128 real get_atomtype_qB(int nt, gpp_atomtype_t ga)
130 if ((nt < 0) || (nt >= ga->nr))
132 return NOTSET;
135 return ga->atom[nt].qB;
138 int get_atomtype_ptype(int nt, gpp_atomtype_t ga)
140 if ((nt < 0) || (nt >= ga->nr))
142 return NOTSET;
145 return ga->atom[nt].ptype;
148 int get_atomtype_batype(int nt, gpp_atomtype_t ga)
150 if ((nt < 0) || (nt >= ga->nr))
152 return NOTSET;
155 return ga->bondatomtype[nt];
158 int get_atomtype_atomnumber(int nt, gpp_atomtype_t ga)
160 if ((nt < 0) || (nt >= ga->nr))
162 return NOTSET;
165 return ga->atomnumber[nt];
168 real get_atomtype_radius(int nt, gpp_atomtype_t ga)
170 if ((nt < 0) || (nt >= ga->nr))
172 return NOTSET;
175 return ga->radius[nt];
178 real get_atomtype_vol(int nt, gpp_atomtype_t ga)
180 if ((nt < 0) || (nt >= ga->nr))
182 return NOTSET;
185 return ga->vol[nt];
188 real get_atomtype_surftens(int nt, gpp_atomtype_t ga)
190 if ((nt < 0) || (nt >= ga->nr))
192 return NOTSET;
195 return ga->surftens[nt];
198 real get_atomtype_gb_radius(int nt, gpp_atomtype_t ga)
200 if ((nt < 0) || (nt >= ga->nr))
202 return NOTSET;
205 return ga->gb_radius[nt];
208 real get_atomtype_S_hct(int nt, gpp_atomtype_t ga)
210 if ((nt < 0) || (nt >= ga->nr))
212 return NOTSET;
215 return ga->S_hct[nt];
218 real get_atomtype_nbparam(int nt, int param, gpp_atomtype_t ga)
220 if ((nt < 0) || (nt >= ga->nr))
222 return NOTSET;
224 if ((param < 0) || (param >= MAXFORCEPARAM))
226 return NOTSET;
228 return ga->nb[nt].c[param];
231 gpp_atomtype_t init_atomtype(void)
233 gpp_atomtype_t ga;
235 snew(ga, 1);
237 ga->nr = 0;
238 ga->atom = NULL;
239 ga->atomname = NULL;
240 ga->nb = NULL;
241 ga->bondatomtype = NULL;
242 ga->radius = NULL;
243 ga->vol = NULL;
244 ga->surftens = NULL;
245 ga->atomnumber = NULL;
246 ga->gb_radius = NULL;
247 ga->S_hct = NULL;
249 return ga;
253 set_atomtype_gbparam(gpp_atomtype_t ga, int i,
254 real radius, real vol, real surftens,
255 real gb_radius, real S_hct)
257 if ( (i < 0) || (i >= ga->nr))
259 return NOTSET;
262 ga->radius[i] = radius;
263 ga->vol[i] = vol;
264 ga->surftens[i] = surftens;
265 ga->gb_radius[i] = gb_radius;
266 ga->S_hct[i] = S_hct;
268 return i;
272 int set_atomtype(int nt, gpp_atomtype_t ga, t_symtab *tab,
273 t_atom *a, const char *name, t_param *nb,
274 int bondatomtype,
275 real radius, real vol, real surftens, int atomnumber,
276 real gb_radius, real S_hct)
278 if ((nt < 0) || (nt >= ga->nr))
280 return NOTSET;
283 ga->atom[nt] = *a;
284 ga->atomname[nt] = put_symtab(tab, name);
285 ga->nb[nt] = *nb;
286 ga->bondatomtype[nt] = bondatomtype;
287 ga->radius[nt] = radius;
288 ga->vol[nt] = vol;
289 ga->surftens[nt] = surftens;
290 ga->atomnumber[nt] = atomnumber;
291 ga->gb_radius[nt] = gb_radius;
292 ga->S_hct[nt] = S_hct;
294 return nt;
297 int add_atomtype(gpp_atomtype_t ga, t_symtab *tab,
298 t_atom *a, const char *name, t_param *nb,
299 int bondatomtype,
300 real radius, real vol, real surftens, real atomnumber,
301 real gb_radius, real S_hct)
303 int i;
305 for (i = 0; (i < ga->nr); i++)
307 if (strcmp(*ga->atomname[i], name) == 0)
309 if (NULL != debug)
311 fprintf(debug, "Trying to add atomtype %s again. Skipping it.\n", name);
313 break;
316 if (i == ga->nr)
318 ga->nr++;
319 srenew(ga->atom, ga->nr);
320 srenew(ga->atomname, ga->nr);
321 srenew(ga->nb, ga->nr);
322 srenew(ga->bondatomtype, ga->nr);
323 srenew(ga->radius, ga->nr);
324 srenew(ga->vol, ga->nr);
325 srenew(ga->surftens, ga->nr);
326 srenew(ga->atomnumber, ga->nr);
327 srenew(ga->gb_radius, ga->nr);
328 srenew(ga->S_hct, ga->nr);
330 return set_atomtype(ga->nr-1, ga, tab, a, name, nb, bondatomtype, radius,
331 vol, surftens, atomnumber, gb_radius, S_hct);
333 else
335 return i;
339 void print_at (FILE * out, gpp_atomtype_t ga)
341 int i;
342 t_atom *atom = ga->atom;
343 t_param *nb = ga->nb;
345 fprintf (out, "[ %s ]\n", dir2str(d_atomtypes));
346 fprintf (out, "; %6s %8s %8s %8s %12s %12s\n",
347 "type", "mass", "charge", "particle", "c6", "c12");
348 for (i = 0; (i < ga->nr); i++)
350 fprintf(out, "%8s %8.3f %8.3f %8s %12e %12e\n",
351 *(ga->atomname[i]), atom[i].m, atom[i].q, "A",
352 nb[i].C0, nb[i].C1);
355 fprintf (out, "\n");
358 void done_atomtype(gpp_atomtype_t ga)
360 sfree(ga->atom);
361 sfree(ga->atomname);
362 sfree(ga->nb);
363 sfree(ga->bondatomtype);
364 sfree(ga->radius);
365 sfree(ga->vol);
366 sfree(ga->gb_radius);
367 sfree(ga->S_hct);
368 sfree(ga->surftens);
369 sfree(ga->atomnumber);
370 ga->nr = 0;
371 sfree(ga);
374 static int search_atomtypes(gpp_atomtype_t ga, int *n, int typelist[],
375 int thistype,
376 t_param param[], int ftype)
378 int i, nn, nrfp, j, k, ntype, tli;
379 gmx_bool bFound = FALSE;
381 nn = *n;
382 nrfp = NRFP(ftype);
383 ntype = get_atomtype_ntypes(ga);
385 for (i = 0; (i < nn); i++)
387 if (typelist[i] == thistype)
389 /* This type number has already been added */
390 break;
393 /* Otherwise, check if the parameters are identical to any previously added type */
395 bFound = TRUE;
396 for (j = 0; j < ntype && bFound; j++)
398 /* Check nonbonded parameters */
399 for (k = 0; k < nrfp && bFound; k++)
401 bFound = (param[ntype*typelist[i]+j].c[k] == param[ntype*thistype+j].c[k]);
404 /* Check radius, volume, surftens */
405 tli = typelist[i];
406 bFound = bFound &&
407 (get_atomtype_radius(tli, ga) == get_atomtype_radius(thistype, ga)) &&
408 (get_atomtype_vol(tli, ga) == get_atomtype_vol(thistype, ga)) &&
409 (get_atomtype_surftens(tli, ga) == get_atomtype_surftens(thistype, ga)) &&
410 (get_atomtype_atomnumber(tli, ga) == get_atomtype_atomnumber(thistype, ga)) &&
411 (get_atomtype_gb_radius(tli, ga) == get_atomtype_gb_radius(thistype, ga)) &&
412 (get_atomtype_S_hct(tli, ga) == get_atomtype_S_hct(thistype, ga));
414 if (bFound)
416 break;
420 if (i == nn)
422 if (debug)
424 fprintf(debug, "Renumbering atomtype %d to %d\n", thistype, nn);
426 if (nn == ntype)
428 gmx_fatal(FARGS, "Atomtype horror n = %d, %s, %d", nn, __FILE__, __LINE__);
430 typelist[nn] = thistype;
431 nn++;
433 *n = nn;
435 return i;
438 void renum_atype(t_params plist[], gmx_mtop_t *mtop,
439 int *wall_atomtype,
440 gpp_atomtype_t ga, gmx_bool bVerbose)
442 int i, j, k, l, molt, mi, mj, nat, nrfp, ftype, ntype;
443 t_atoms *atoms;
444 t_param *nbsnew;
445 int *typelist;
446 real *new_radius;
447 real *new_vol;
448 real *new_surftens;
449 real *new_gb_radius;
450 real *new_S_hct;
451 int *new_atomnumber;
452 char ***new_atomname;
454 ntype = get_atomtype_ntypes(ga);
455 snew(typelist, ntype);
457 if (bVerbose)
459 fprintf(stderr, "renumbering atomtypes...\n");
462 /* Since the bonded interactions have been assigned now,
463 * we want to reduce the number of atom types by merging
464 * ones with identical nonbonded interactions, in addition
465 * to removing unused ones.
467 * With Generalized-Born electrostatics, or implicit solvent
468 * we also check that the atomtype radius, effective_volume
469 * and surface tension match.
471 * With QM/MM we also check that the atom numbers match
474 /* Get nonbonded interaction type */
475 if (plist[F_LJ].nr > 0)
477 ftype = F_LJ;
479 else
481 ftype = F_BHAM;
484 /* Renumber atomtypes by first making a list of which ones are actually used.
485 * We provide the list of nonbonded parameters so search_atomtypes
486 * can determine if two types should be merged.
488 nat = 0;
489 for (molt = 0; molt < mtop->nmoltype; molt++)
491 atoms = &mtop->moltype[molt].atoms;
492 for (i = 0; (i < atoms->nr); i++)
494 atoms->atom[i].type =
495 search_atomtypes(ga, &nat, typelist, atoms->atom[i].type,
496 plist[ftype].param, ftype);
497 atoms->atom[i].typeB =
498 search_atomtypes(ga, &nat, typelist, atoms->atom[i].typeB,
499 plist[ftype].param, ftype);
503 for (i = 0; i < 2; i++)
505 if (wall_atomtype[i] >= 0)
507 wall_atomtype[i] = search_atomtypes(ga, &nat, typelist, wall_atomtype[i],
508 plist[ftype].param, ftype);
512 snew(new_radius, nat);
513 snew(new_vol, nat);
514 snew(new_surftens, nat);
515 snew(new_atomnumber, nat);
516 snew(new_gb_radius, nat);
517 snew(new_S_hct, nat);
518 snew(new_atomname, nat);
520 /* We now have a list of unique atomtypes in typelist */
522 if (debug)
524 pr_ivec(debug, 0, "typelist", typelist, nat, TRUE);
527 /* Renumber nlist */
528 nbsnew = NULL;
529 snew(nbsnew, plist[ftype].nr);
531 nrfp = NRFP(ftype);
533 for (i = k = 0; (i < nat); i++)
535 mi = typelist[i];
536 for (j = 0; (j < nat); j++, k++)
538 mj = typelist[j];
539 for (l = 0; (l < nrfp); l++)
541 nbsnew[k].c[l] = plist[ftype].param[ntype*mi+mj].c[l];
544 new_radius[i] = get_atomtype_radius(mi, ga);
545 new_vol[i] = get_atomtype_vol(mi, ga);
546 new_surftens[i] = get_atomtype_surftens(mi, ga);
547 new_atomnumber[i] = get_atomtype_atomnumber(mi, ga);
548 new_gb_radius[i] = get_atomtype_gb_radius(mi, ga);
549 new_S_hct[i] = get_atomtype_S_hct(mi, ga);
550 new_atomname[i] = ga->atomname[mi];
553 for (i = 0; (i < nat*nat); i++)
555 for (l = 0; (l < nrfp); l++)
557 plist[ftype].param[i].c[l] = nbsnew[i].c[l];
560 plist[ftype].nr = i;
561 mtop->ffparams.atnr = nat;
563 sfree(ga->radius);
564 sfree(ga->vol);
565 sfree(ga->surftens);
566 sfree(ga->atomnumber);
567 sfree(ga->gb_radius);
568 sfree(ga->S_hct);
569 /* Dangling atomname pointers ? */
570 sfree(ga->atomname);
572 ga->radius = new_radius;
573 ga->vol = new_vol;
574 ga->surftens = new_surftens;
575 ga->atomnumber = new_atomnumber;
576 ga->gb_radius = new_gb_radius;
577 ga->S_hct = new_S_hct;
578 ga->atomname = new_atomname;
580 ga->nr = nat;
582 sfree(nbsnew);
583 sfree(typelist);
586 void copy_atomtype_atomtypes(gpp_atomtype_t ga, t_atomtypes *atomtypes)
588 int i, ntype;
590 /* Copy the atomtype data to the topology atomtype list */
591 ntype = get_atomtype_ntypes(ga);
592 atomtypes->nr = ntype;
593 snew(atomtypes->radius, ntype);
594 snew(atomtypes->vol, ntype);
595 snew(atomtypes->surftens, ntype);
596 snew(atomtypes->atomnumber, ntype);
597 snew(atomtypes->gb_radius, ntype);
598 snew(atomtypes->S_hct, ntype);
600 for (i = 0; i < ntype; i++)
602 atomtypes->radius[i] = ga->radius[i];
603 atomtypes->vol[i] = ga->vol[i];
604 atomtypes->surftens[i] = ga->surftens[i];
605 atomtypes->atomnumber[i] = ga->atomnumber[i];
606 atomtypes->gb_radius[i] = ga->gb_radius[i];
607 atomtypes->S_hct[i] = ga->S_hct[i];