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
43 #include "gromacs/math/vectypes.h"
45 class DDBalanceRegionHandler
;
47 struct gmx_enerdata_t
;
49 struct SimulationGroups
;
50 struct gmx_localtop_t
;
51 struct gmx_multisim_t
;
54 class InteractionDefinitions
;
68 class ArrayRefWithPadding
;
70 class ForceBuffersView
;
71 class ForceWithVirial
;
73 class MdrunScheduleWorkload
;
76 class VirtualSitesHandler
;
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
,
94 const gmx_multisim_t
* ms
,
95 const t_inputrec
* inputrec
,
97 gmx_enfrot
* enforcedRotation
,
98 gmx::ImdSession
* imdSession
,
102 gmx_wallcycle
* wcycle
,
103 const gmx_localtop_t
* top
,
105 gmx::ArrayRefWithPadding
<gmx::RVec
> coordinates
,
107 gmx::ForceBuffersView
* force
,
109 const t_mdatoms
* mdatoms
,
110 gmx_enerdata_t
* enerd
,
111 gmx::ArrayRef
<const real
> lambda
,
113 gmx::MdrunScheduleWorkload
* runScheduleWork
,
114 gmx::VirtualSitesHandler
* vsite
,
119 const DDBalanceRegionHandler
& ddBalanceRegionHandler
);
121 /* Communicate coordinates (if parallel).
122 * Do neighbor searching (if necessary).
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
,
140 gmx_wallcycle
* wcycle
,
142 gmx::ArrayRef
<const gmx::RVec
> coordinates
,
143 gmx::ForceWithVirial
* forceWithVirial
,
144 gmx_enerdata_t
* enerd
,
148 const gmx::StepWorkload
& stepWork
,
149 const DDBalanceRegionHandler
& ddBalanceRegionHandler
);