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-2008, The GROMACS development team,
6 * check out http://www.gromacs.org for more information.
7 * Copyright (c) 2012,2013, by the GROMACS development team, led by
8 * David van der Spoel, Berk Hess, Erik Lindahl, and including many
9 * others, as listed in the AUTHORS file in the top-level source
10 * directory and at http://www.gromacs.org.
12 * GROMACS is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 2.1
15 * of the License, or (at your option) any later version.
17 * GROMACS is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with GROMACS; if not, see
24 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
25 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 * If you want to redistribute modifications to GROMACS, please
28 * consider that scientific software is very special. Version
29 * control is crucial - bugs must be traceable. We will be happy to
30 * consider code for inclusion in the official distribution, but
31 * derived work must not be called official GROMACS. Details are found
32 * in the README & COPYING files - if they are missing, get the
33 * official version at http://www.gromacs.org.
35 * To help us fund GROMACS development, we humbly ask that you cite
36 * the research papers on the package. Check out http://www.gromacs.org.
44 #include "types/commrec.h"
51 /* Still parameters - make sure to edit in genborn_sse.c too if you change these! */
52 #define STILL_P1 0.073*0.1 /* length */
53 #define STILL_P2 0.921*0.1*CAL2JOULE /* energy*length */
54 #define STILL_P3 6.211*0.1*CAL2JOULE /* energy*length */
55 #define STILL_P4 15.236*0.1*CAL2JOULE
56 #define STILL_P5 1.254
58 #define STILL_P5INV (1.0/STILL_P5)
59 #define STILL_PIP5 (M_PI*STILL_P5)
62 /* Initialise GB stuff */
63 int init_gb(gmx_genborn_t
**p_born
,
64 const t_commrec
*cr
, t_forcerec
*fr
, const t_inputrec
*ir
,
65 const gmx_mtop_t
*mtop
, real rgbradii
, int gb_algorithm
);
68 /* Born radii calculations, both with and without SSE acceleration */
69 int calc_gb_rad(t_commrec
*cr
, t_forcerec
*fr
, t_inputrec
*ir
, gmx_localtop_t
*top
,
70 const t_atomtypes
*atype
, rvec x
[], t_nblist
*nl
, gmx_genborn_t
*born
, t_mdatoms
*md
, t_nrnb
*nrnb
);
74 /* Bonded GB interactions */
75 real
gb_bonds_tab(rvec x
[], rvec f
[], rvec fshift
[], real
*charge
, real
*p_gbtabscale
,
76 real
*invsqrta
, real
*dvda
, real
*GBtab
, t_idef
*idef
, real epsilon_r
,
77 real gb_epsilon_solvent
, real facel
, const t_pbc
*pbc
, const t_graph
*graph
);
81 void gb_pd_send(t_commrec
*cr
, real
*send_data
, int nr
);
84 /* Functions for setting up the F_GB12,13,14 lists in grompp */
86 init_gb_plist(t_params
*p_list
);
89 convert_gb_params(gmx_ffparams_t
*ffparams
, t_functype ftype
, t_params
*gb_plist
, t_ilist
*il
);
93 /* Functions for calculating adjustments due to ie chain rule terms */
95 calc_gb_forces(t_commrec
*cr
, t_mdatoms
*md
, gmx_genborn_t
*born
, gmx_localtop_t
*top
, const t_atomtypes
*atype
,
96 rvec x
[], rvec f
[], t_forcerec
*fr
, t_idef
*idef
, int gb_algorithm
, int sa_algorithm
, t_nrnb
*nrnb
, gmx_bool bRad
,
97 const t_pbc
*pbc
, const t_graph
*graph
, gmx_enerdata_t
*enerd
);
101 make_gb_nblist(t_commrec
*cr
, int gb_algorithm
, real gbcut
,
102 rvec x
[], matrix box
,
103 t_forcerec
*fr
, t_idef
*idef
, t_graph
*graph
, gmx_genborn_t
*born
);
106 make_local_gb(const t_commrec
*cr
, gmx_genborn_t
*born
, int gb_algorithm
);
112 #endif /* _genborn_h */