Move computeSlowForces into stepWork
[gromacs.git] / src / gromacs / mdlib / force.h
blob63f80e88394acbfc85503b10c56c55207104f7a5
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 by the GROMACS development team.
7 * Copyright (c) 2018,2019,2020, by the GROMACS development team, led by
8 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
9 * and including many others, as listed in the AUTHORS file in the
10 * top-level source 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.
38 #ifndef GMX_MDLIB_FORCE_H
39 #define GMX_MDLIB_FORCE_H
41 #include <cstdio>
43 #include "gromacs/math/vectypes.h"
45 class DDBalanceRegionHandler;
46 struct gmx_edsam;
47 struct gmx_enerdata_t;
48 struct gmx_enfrot;
49 struct SimulationGroups;
50 struct gmx_localtop_t;
51 struct gmx_multisim_t;
52 struct gmx_wallcycle;
53 class history_t;
54 class InteractionDefinitions;
55 struct pull_t;
56 struct t_commrec;
57 struct t_forcerec;
58 struct t_inputrec;
59 struct t_lambda;
60 struct t_mdatoms;
61 struct t_nrnb;
63 namespace gmx
65 template<typename>
66 class ArrayRef;
67 template<typename>
68 class ArrayRefWithPadding;
69 class Awh;
70 class ForceBuffersView;
71 class ForceWithVirial;
72 class ImdSession;
73 class MdrunScheduleWorkload;
74 class MDLogger;
75 class StepWorkload;
76 class VirtualSitesHandler;
77 } // namespace gmx
79 /* Perform the force and, if requested, energy computation
81 * Without multiple time stepping the force is returned in force->force().
83 * With multiple time stepping the behavior depends on the integration step.
84 * At fast steps (step % mtsFactor != 0), the fast force is returned in
85 * force->force(). The force->forceMtsCombined() buffer is unused.
86 * At slow steps, the normal force is returned in force->force(),
87 * unless the \p GMX_FORCE_DO_NOT_NEED_NORMAL_FORCE is set in \p legacyFlags.
88 * A MTS-combined force, F_fast + mtsFactor*F_slow, is always returned in
89 * force->forceMtsCombined(). This forceMts can be used directly in a standard
90 * leap-frog integrator to do multiple time stepping.
92 void do_force(FILE* log,
93 const t_commrec* cr,
94 const gmx_multisim_t* ms,
95 const t_inputrec* inputrec,
96 gmx::Awh* awh,
97 gmx_enfrot* enforcedRotation,
98 gmx::ImdSession* imdSession,
99 pull_t* pull_work,
100 int64_t step,
101 t_nrnb* nrnb,
102 gmx_wallcycle* wcycle,
103 const gmx_localtop_t* top,
104 const matrix box,
105 gmx::ArrayRefWithPadding<gmx::RVec> coordinates,
106 history_t* hist,
107 gmx::ForceBuffersView* force,
108 tensor vir_force,
109 const t_mdatoms* mdatoms,
110 gmx_enerdata_t* enerd,
111 gmx::ArrayRef<const real> lambda,
112 t_forcerec* fr,
113 gmx::MdrunScheduleWorkload* runScheduleWork,
114 gmx::VirtualSitesHandler* vsite,
115 rvec mu_tot,
116 double t,
117 gmx_edsam* ed,
118 int legacyFlags,
119 const DDBalanceRegionHandler& ddBalanceRegionHandler);
121 /* Communicate coordinates (if parallel).
122 * Do neighbor searching (if necessary).
123 * Calculate forces.
124 * Communicate forces (if parallel).
125 * Spread forces for vsites (if present).
127 * f is always required.
131 /* Calculate CPU Ewald or PME-mesh forces when done on this rank and Ewald corrections, when used
133 * Note that Ewald dipole and net charge corrections are always computed here, independently
134 * on whether the PME-mesh contribution is computed on a separate PME rank or on a GPU.
136 void calculateLongRangeNonbondeds(t_forcerec* fr,
137 const t_inputrec* ir,
138 const t_commrec* cr,
139 t_nrnb* nrnb,
140 gmx_wallcycle* wcycle,
141 const t_mdatoms* md,
142 gmx::ArrayRef<const gmx::RVec> coordinates,
143 gmx::ForceWithVirial* forceWithVirial,
144 gmx_enerdata_t* enerd,
145 const matrix box,
146 const real* lambda,
147 const rvec* mu_tot,
148 const gmx::StepWorkload& stepWork,
149 const DDBalanceRegionHandler& ddBalanceRegionHandler);
151 #endif