Introduce PpForceWorkload
[gromacs.git] / src / gromacs / mdlib / force.h
blob2819092a73ef70a80e47cce8c6e8893f30437003
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) 2013,2014,2015,2016,2017,2018, 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 #ifndef GMX_MDLIB_FORCE_H
38 #define GMX_MDLIB_FORCE_H
40 #include "gromacs/domdec/dlbtiming.h"
41 #include "gromacs/math/arrayrefwithpadding.h"
42 #include "gromacs/math/paddedvector.h"
43 #include "gromacs/math/vectypes.h"
44 #include "gromacs/utility/arrayref.h"
46 struct gmx_edsam;
47 struct gmx_enerdata_t;
48 struct gmx_enfrot;
49 struct gmx_groups_t;
50 struct gmx_grppairener_t;
51 struct gmx_localtop_t;
52 struct gmx_multisim_t;
53 struct gmx_vsite_t;
54 struct gmx_wallcycle;
55 class history_t;
56 struct t_blocka;
57 struct t_commrec;
58 struct t_fcdata;
59 struct t_forcerec;
60 struct t_graph;
61 struct t_idef;
62 struct t_inputrec;
63 struct t_lambda;
64 struct t_mdatoms;
65 struct t_nrnb;
67 namespace gmx
69 class Awh;
70 class PpForceWorkload;
71 class ForceWithVirial;
72 class MDLogger;
75 void init_enerdata(int ngener, int n_lambda, gmx_enerdata_t *enerd);
76 /* Intializes the energy storage struct */
78 void destroy_enerdata(gmx_enerdata_t *enerd);
79 /* Free all memory associated with enerd */
81 void reset_foreign_enerdata(gmx_enerdata_t *enerd);
82 /* Resets only the foreign energy data */
84 void reset_enerdata(gmx_enerdata_t *enerd);
85 /* Resets the energy data */
87 void sum_epot(gmx_grppairener_t *grpp, real *epot);
88 /* Locally sum the non-bonded potential energy terms */
90 void sum_dhdl(gmx_enerdata_t *enerd, gmx::ArrayRef<const real> lambda, t_lambda *fepvals);
91 /* Sum the free energy contributions */
93 void do_force(FILE *log,
94 const t_commrec *cr,
95 const gmx_multisim_t *ms,
96 const t_inputrec *inputrec,
97 gmx::Awh *awh,
98 gmx_enfrot *enforcedRotation,
99 int64_t step,
100 t_nrnb *nrnb,
101 gmx_wallcycle *wcycle,
102 // TODO top can be const when the group scheme no longer
103 // builds exclusions during neighbor searching within
104 // do_force_cutsGROUP.
105 gmx_localtop_t *top,
106 const gmx_groups_t *groups,
107 matrix box,
108 gmx::ArrayRefWithPadding<gmx::RVec> coordinates,
109 history_t *hist,
110 gmx::ArrayRefWithPadding<gmx::RVec> force,
111 tensor vir_force,
112 const t_mdatoms *mdatoms,
113 gmx_enerdata_t *enerd,
114 t_fcdata *fcd,
115 gmx::ArrayRef<real> lambda,
116 t_graph *graph,
117 t_forcerec *fr,
118 gmx::PpForceWorkload *ppForceWorkload,
119 const gmx_vsite_t *vsite,
120 rvec mu_tot,
121 double t,
122 gmx_edsam *ed,
123 int flags,
124 DdOpenBalanceRegionBeforeForceComputation ddOpenBalanceRegion,
125 DdCloseBalanceRegionAfterForceComputation ddCloseBalanceRegion);
127 /* Communicate coordinates (if parallel).
128 * Do neighbor searching (if necessary).
129 * Calculate forces.
130 * Communicate forces (if parallel).
131 * Spread forces for vsites (if present).
133 * f is always required.
136 void ns(FILE *fplog,
137 t_forcerec *fr,
138 matrix box,
139 const gmx_groups_t *groups,
140 gmx_localtop_t *top,
141 const t_mdatoms *md,
142 const t_commrec *cr,
143 t_nrnb *nrnb,
144 gmx_bool bFillGrid);
145 /* Call the neighborsearcher */
147 void do_force_lowlevel(t_forcerec *fr,
148 const t_inputrec *ir,
149 const t_idef *idef,
150 const t_commrec *cr,
151 const gmx_multisim_t *ms,
152 t_nrnb *nrnb,
153 gmx_wallcycle *wcycle,
154 const t_mdatoms *md,
155 rvec x[],
156 history_t *hist,
157 rvec f_shortrange[],
158 gmx::ForceWithVirial *forceWithVirial,
159 gmx_enerdata_t *enerd,
160 t_fcdata *fcd,
161 matrix box,
162 t_lambda *fepvals,
163 real *lambda,
164 const t_graph *graph,
165 const t_blocka *excl,
166 rvec mu_tot[2],
167 int flags,
168 float *cycles_pme);
169 /* Call all the force routines */
171 #endif