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.
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 */
67 int get_atomtype_type(const char *str
, gpp_atomtype_t ga
)
71 /* Atom types are always case sensitive */
72 for (i
= 0; (i
< ga
->nr
); i
++)
74 if (strcmp(str
, *(ga
->atomname
[i
])) == 0)
83 int get_atomtype_ntypes(gpp_atomtype_t ga
)
88 char *get_atomtype_name(int nt
, gpp_atomtype_t ga
)
90 if ((nt
< 0) || (nt
>= ga
->nr
))
95 return *(ga
->atomname
[nt
]);
98 real
get_atomtype_massA(int nt
, gpp_atomtype_t ga
)
100 if ((nt
< 0) || (nt
>= ga
->nr
))
105 return ga
->atom
[nt
].m
;
108 real
get_atomtype_massB(int nt
, gpp_atomtype_t ga
)
110 if ((nt
< 0) || (nt
>= ga
->nr
))
115 return ga
->atom
[nt
].mB
;
118 real
get_atomtype_qA(int nt
, gpp_atomtype_t ga
)
120 if ((nt
< 0) || (nt
>= ga
->nr
))
125 return ga
->atom
[nt
].q
;
128 real
get_atomtype_qB(int nt
, gpp_atomtype_t ga
)
130 if ((nt
< 0) || (nt
>= ga
->nr
))
135 return ga
->atom
[nt
].qB
;
138 int get_atomtype_ptype(int nt
, gpp_atomtype_t ga
)
140 if ((nt
< 0) || (nt
>= ga
->nr
))
145 return ga
->atom
[nt
].ptype
;
148 int get_atomtype_batype(int nt
, gpp_atomtype_t ga
)
150 if ((nt
< 0) || (nt
>= ga
->nr
))
155 return ga
->bondatomtype
[nt
];
158 int get_atomtype_atomnumber(int nt
, gpp_atomtype_t ga
)
160 if ((nt
< 0) || (nt
>= ga
->nr
))
165 return ga
->atomnumber
[nt
];
168 real
get_atomtype_radius(int nt
, gpp_atomtype_t ga
)
170 if ((nt
< 0) || (nt
>= ga
->nr
))
175 return ga
->radius
[nt
];
178 real
get_atomtype_vol(int nt
, gpp_atomtype_t ga
)
180 if ((nt
< 0) || (nt
>= ga
->nr
))
188 real
get_atomtype_surftens(int nt
, gpp_atomtype_t ga
)
190 if ((nt
< 0) || (nt
>= ga
->nr
))
195 return ga
->surftens
[nt
];
198 real
get_atomtype_gb_radius(int nt
, gpp_atomtype_t ga
)
200 if ((nt
< 0) || (nt
>= ga
->nr
))
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
))
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
))
224 if ((param
< 0) || (param
>= MAXFORCEPARAM
))
228 return ga
->nb
[nt
].c
[param
];
231 gpp_atomtype_t
init_atomtype(void)
241 ga
->bondatomtype
= NULL
;
245 ga
->atomnumber
= NULL
;
246 ga
->gb_radius
= NULL
;
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
))
262 ga
->radius
[i
] = radius
;
264 ga
->surftens
[i
] = surftens
;
265 ga
->gb_radius
[i
] = gb_radius
;
266 ga
->S_hct
[i
] = S_hct
;
272 int set_atomtype(int nt
, gpp_atomtype_t ga
, t_symtab
*tab
,
273 t_atom
*a
, const char *name
, t_param
*nb
,
275 real radius
, real vol
, real surftens
, int atomnumber
,
276 real gb_radius
, real S_hct
)
278 if ((nt
< 0) || (nt
>= ga
->nr
))
284 ga
->atomname
[nt
] = put_symtab(tab
, name
);
286 ga
->bondatomtype
[nt
] = bondatomtype
;
287 ga
->radius
[nt
] = radius
;
289 ga
->surftens
[nt
] = surftens
;
290 ga
->atomnumber
[nt
] = atomnumber
;
291 ga
->gb_radius
[nt
] = gb_radius
;
292 ga
->S_hct
[nt
] = S_hct
;
297 int add_atomtype(gpp_atomtype_t ga
, t_symtab
*tab
,
298 t_atom
*a
, const char *name
, t_param
*nb
,
300 real radius
, real vol
, real surftens
, real atomnumber
,
301 real gb_radius
, real S_hct
)
305 for (i
= 0; (i
< ga
->nr
); i
++)
307 if (strcmp(*ga
->atomname
[i
], name
) == 0)
311 fprintf(debug
, "Trying to add atomtype %s again. Skipping it.\n", name
);
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
);
339 void print_at (FILE * out
, gpp_atomtype_t ga
)
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",
358 void done_atomtype(gpp_atomtype_t ga
)
363 sfree(ga
->bondatomtype
);
366 sfree(ga
->gb_radius
);
369 sfree(ga
->atomnumber
);
374 static int search_atomtypes(gpp_atomtype_t ga
, int *n
, int typelist
[],
376 t_param param
[], int ftype
)
378 int i
, nn
, nrfp
, j
, k
, ntype
, tli
;
379 gmx_bool bFound
= FALSE
;
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 */
393 /* Otherwise, check if the parameters are identical to any previously added type */
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 */
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
));
424 fprintf(debug
, "Renumbering atomtype %d to %d\n", thistype
, nn
);
428 gmx_fatal(FARGS
, "Atomtype horror n = %d, %s, %d", nn
, __FILE__
, __LINE__
);
430 typelist
[nn
] = thistype
;
438 void renum_atype(t_params plist
[], gmx_mtop_t
*mtop
,
440 gpp_atomtype_t ga
, gmx_bool bVerbose
)
442 int i
, j
, k
, l
, molt
, mi
, mj
, nat
, nrfp
, ftype
, ntype
;
452 char ***new_atomname
;
454 ntype
= get_atomtype_ntypes(ga
);
455 snew(typelist
, ntype
);
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)
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.
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
);
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 */
524 pr_ivec(debug
, 0, "typelist", typelist
, nat
, TRUE
);
529 snew(nbsnew
, plist
[ftype
].nr
);
533 for (i
= k
= 0; (i
< nat
); i
++)
536 for (j
= 0; (j
< nat
); j
++, k
++)
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
];
561 mtop
->ffparams
.atnr
= nat
;
566 sfree(ga
->atomnumber
);
567 sfree(ga
->gb_radius
);
569 /* Dangling atomname pointers ? */
572 ga
->radius
= new_radius
;
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
;
586 void copy_atomtype_atomtypes(gpp_atomtype_t ga
, t_atomtypes
*atomtypes
)
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
];