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 "gromacs/math/arrayrefwithpadding.h"
42 #include "gromacs/math/vectypes.h"
43 #include "gromacs/utility/arrayref.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
;
67 class ForceWithVirial
;
69 class MdrunScheduleWorkload
;
72 class VirtualSitesHandler
;
75 void do_force(FILE* log
,
77 const gmx_multisim_t
* ms
,
78 const t_inputrec
* inputrec
,
80 gmx_enfrot
* enforcedRotation
,
81 gmx::ImdSession
* imdSession
,
85 gmx_wallcycle
* wcycle
,
86 const gmx_localtop_t
* top
,
88 gmx::ArrayRefWithPadding
<gmx::RVec
> coordinates
,
90 gmx::ArrayRefWithPadding
<gmx::RVec
> force
,
92 const t_mdatoms
* mdatoms
,
93 gmx_enerdata_t
* enerd
,
94 gmx::ArrayRef
<const real
> lambda
,
96 gmx::MdrunScheduleWorkload
* runScheduleWork
,
97 gmx::VirtualSitesHandler
* vsite
,
102 const DDBalanceRegionHandler
& ddBalanceRegionHandler
);
104 /* Communicate coordinates (if parallel).
105 * Do neighbor searching (if necessary).
107 * Communicate forces (if parallel).
108 * Spread forces for vsites (if present).
110 * f is always required.
114 /* Compute listed forces, Ewald, PME corrections add when (when used).
116 * xWholeMolecules only needs to contain whole molecules when orientation
117 * restraints need to be computed and can be empty otherwise.
119 void do_force_lowlevel(t_forcerec
* fr
,
120 const t_inputrec
* ir
,
122 const gmx_multisim_t
* ms
,
124 gmx_wallcycle
* wcycle
,
126 gmx::ArrayRefWithPadding
<const gmx::RVec
> coordinates
,
127 gmx::ArrayRef
<const gmx::RVec
> xWholeMolecules
,
129 gmx::ForceOutputs
* forceOutputs
,
130 gmx_enerdata_t
* enerd
,
134 const gmx::StepWorkload
& stepWork
,
135 const DDBalanceRegionHandler
& ddBalanceRegionHandler
);
136 /* Call all the force routines */