Merge release-4-6 into master
[alexxy/gromacs.git] / src / gromacs / legacyheaders / vsite.h
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, 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
38 #ifndef _vsite_h
39 #define _vsite_h
40
41 #include <stdio.h>
42 #include "typedefs.h"
43 #include "types/commrec.h"
44
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48
49 typedef struct {
50     int *      left_import_construct;
51     int        left_import_nconstruct;
52     int *      left_export_construct;
53     int        left_export_nconstruct;
54     int *      right_import_construct;
55     int        right_import_nconstruct;
56     int *      right_export_construct;
57     int        right_export_nconstruct;
58     rvec *     send_buf;
59     rvec *     recv_buf;
60 } t_comm_vsites;
61
62 typedef struct {
63     t_ilist ilist[F_NRE];     /* vsite ilists for this thread            */
64     rvec    fshift[SHIFTS];   /* fshift accumulation buffer              */
65     matrix  dxdf;             /* virial dx*df accumulation buffer        */
66 } gmx_vsite_thread_t;
67
68 typedef struct {
69     gmx_bool            bHaveChargeGroups;    /* Do we have charge groups?               */
70     int                 n_intercg_vsite;      /* The number of inter charge group vsites */
71     int                 nvsite_pbc_molt;      /* The array size of vsite_pbc_molt        */
72     int              ***vsite_pbc_molt;       /* The pbc atoms for intercg vsites        */
73     int               **vsite_pbc_loc;        /* The local pbc atoms                     */
74     int                *vsite_pbc_loc_nalloc; /* Sizes of vsite_pbc_loc                  */
75     gmx_bool            bPDvsitecomm;         /* Do we need vsite communication with PD? */
76     t_comm_vsites      *vsitecomm;            /* The PD vsite communication struct       */
77     int                 nthreads;             /* Number of threads used for vsites       */
78     gmx_vsite_thread_t *tdata;                /* Thread local vsites and work structs    */
79     int                *th_ind;               /* Work array                              */
80     int                 th_ind_nalloc;        /* Size of th_ind                          */
81 } gmx_vsite_t;
82
83 void construct_vsites(gmx_vsite_t *vsite,
84                       rvec x[],
85                       real dt, rvec v[],
86                       t_iparams ip[], t_ilist ilist[],
87                       int ePBC, gmx_bool bMolPBC, t_graph *graph,
88                       t_commrec *cr, matrix box);
89 /* Create positions of vsite atoms based on surrounding atoms
90  * for the local system.
91  * If v is passed, the velocities of the vsites will be calculated
92  * as the new positions minus the old positions divided by dt,
93  * thus v should only be passed when the coordinates have been
94  * updated with a full time step.
95  * Note that velocitis of vsites are completely irrelevant
96  * for the integration, they are only useful for analysis.
97  */
98
99 void construct_vsites_mtop(gmx_vsite_t *vsite,
100                            gmx_mtop_t *mtop, rvec x[]);
101 /* Create positions of vsite atoms based on surrounding atoms
102  * for the whole system.
103  * This function assumes that all molecules are whole.
104  */
105
106 void spread_vsite_f(gmx_vsite_t *vsite,
107                     rvec x[], rvec f[], rvec *fshift,
108                     gmx_bool VirCorr, matrix vir,
109                     t_nrnb *nrnb, t_idef *idef,
110                     int ePBC, gmx_bool bMolPBC, t_graph *g, matrix box,
111                     t_commrec *cr);
112 /* Spread the force operating on the vsite atoms on the surrounding atoms.
113  * If fshift!=NULL also update the shift forces.
114  * If VirCorr=TRUE add the virial correction for non-linear vsite constructs
115  * to vir. This correction is required when the virial is not calculated
116  * afterwards from the particle position and forces, but in a different way,
117  * as for instance for the PME mesh contribution.
118  */
119
120 gmx_vsite_t *init_vsite(gmx_mtop_t *mtop, t_commrec *cr,
121                         gmx_bool bSerial_NoPBC);
122 /* Initialize the virtual site struct,
123  * returns NULL when there are no virtual sites.
124  * bSerial_NoPBC is to generate a simple vsite setup to be
125  * used only serial (no MPI or thread parallelization) and without pbc;
126  * this is useful for correction vsites of the initial configuration.
127  */
128
129 void split_vsites_over_threads(const t_ilist   *ilist,
130                                const t_mdatoms *mdatoms,
131                                gmx_bool         bLimitRange,
132                                gmx_vsite_t     *vsite);
133 /* Divide the vsite work-load over the threads.
134  * Should be called at the end of the domain decomposition.
135  */
136
137 void set_vsite_top(gmx_vsite_t *vsite, gmx_localtop_t *top, t_mdatoms *md,
138                    t_commrec *cr);
139 /* Set some vsite data for runs without domain decomposition.
140  * Should be called once after init_vsite, before calling other routines.
141  */
142
143 #ifdef __cplusplus
144 }
145 #endif
146
147 #endif