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