2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2016,2017,2018,2019, by the GROMACS development team, led by
5 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 * and including many others, as listed in the AUTHORS file in the
7 * top-level source directory and at http://www.gromacs.org.
9 * GROMACS is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 2.1
12 * of the License, or (at your option) any later version.
14 * GROMACS is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with GROMACS; if not, see
21 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 * If you want to redistribute modifications to GROMACS, please
25 * consider that scientific software is very special. Version
26 * control is crucial - bugs must be traceable. We will be happy to
27 * consider code for inclusion in the official distribution, but
28 * derived work must not be called official GROMACS. Details are found
29 * in the README & COPYING files - if they are missing, get the
30 * official version at http://www.gromacs.org.
32 * To help us fund GROMACS development, we humbly ask that you cite
33 * the research papers on the package. Check out http://www.gromacs.org.
35 /*! \libinternal \file
37 * Declares gmx::IForceProvider and ForceProviders.
39 * See \ref page_mdmodules for an overview of this and associated interfaces.
41 * \author Teemu Murtola <teemu.murtola@gmail.com>
42 * \author Carsten Kutzner <ckutzne@gwdg.de>
44 * \ingroup module_mdtypes
46 #ifndef GMX_MDTYPES_IFORCEPROVIDER_H
47 #define GMX_MDTYPES_IFORCEPROVIDER_H
49 #include "gromacs/math/vec.h"
50 #include "gromacs/utility/arrayref.h"
51 #include "gromacs/utility/classhelpers.h"
52 #include "gromacs/utility/gmxassert.h"
54 struct gmx_enerdata_t
;
64 class ForceWithVirial
;
67 /*! \libinternal \brief
68 * Helper struct that bundles data for passing it over to the force providers
70 * This is a short-lived container that bundles up all necessary input data for the
71 * force providers. Its only purpose is to allow calling forceProviders->calculateForces()
72 * with just two arguments, one being the container for the input data,
73 * the other the container for the output data.
75 * Both ForceProviderInput as well as ForceProviderOutput only package existing
76 * data structs together for handing it over to calculateForces(). Apart from the
77 * POD entries they own nothing.
79 class ForceProviderInput
82 /*! \brief Constructor assembles all necessary force provider input data
84 * \param[in] x Atomic positions
85 * \param[in] cr Communication record structure
86 * \param[in] box The simulation box
87 * \param[in] time The current time in the simulation
88 * \param[in] mdatoms The atomic data
90 ForceProviderInput(ArrayRef
<const RVec
> x
,
91 const t_mdatoms
& mdatoms
,
94 const t_commrec
& cr
) :
103 ArrayRef
<const RVec
> x_
; //!< The atomic positions
104 const t_mdatoms
& mdatoms_
; //!< Atomic data
105 double t_
; //!< The current time in the simulation
106 matrix box_
= { { 0, 0, 0 }, { 0, 0, 0 }, { 0, 0, 0 } }; //!< The simulation box
107 const t_commrec
& cr_
; //!< Communication record structure
110 /*! \brief Take pointer, check if valid, return reference
113 T
& makeRefFromPointer(T
* ptr
)
115 GMX_ASSERT(ptr
!= nullptr, "got null pointer");
119 /*! \libinternal \brief
120 * Helper struct bundling the output data of a force provider
122 * Same as for the ForceProviderInput class, but these variables can be written as well.
124 class ForceProviderOutput
127 /*! \brief Constructor assembles all necessary force provider output data
129 * \param[in,out] forceWithVirial Container for force and virial
130 * \param[in,out] enerd Structure containing energy data
132 ForceProviderOutput(ForceWithVirial
* forceWithVirial
, gmx_enerdata_t
* enerd
) :
133 forceWithVirial_(makeRefFromPointer(forceWithVirial
)),
134 enerd_(makeRefFromPointer(enerd
))
138 ForceWithVirial
& forceWithVirial_
; //!< Container for force and virial
139 gmx_enerdata_t
& enerd_
; //!< Structure containing energy data
143 /*! \libinternal \brief
144 * Interface for a component that provides forces during MD.
146 * Modules implementing IMDModule generally implement this internally, and use
147 * IMDModule::initForceProviders() to register their implementation in
150 * The interface most likely requires additional generalization for use in
151 * other modules than the current electric field implementation.
153 * The forces that are produced by force providers are not taken into account
154 * in the calculation of the virial. When applicable, the provider should
155 * compute its own virial contribution.
158 * \ingroup module_mdtypes
166 * \param[in] forceProviderInput struct that collects input data for the force providers
167 * \param[in,out] forceProviderOutput struct that collects output data of the force providers
169 virtual void calculateForces(const ForceProviderInput
& forceProviderInput
,
170 ForceProviderOutput
* forceProviderOutput
) = 0;
176 /*! \libinternal \brief
177 * Evaluates forces from a collection of gmx::IForceProvider.
180 * \ingroup module_mdtypes
191 void addForceProvider(gmx::IForceProvider
* provider
);
193 //! Whether there are modules added.
194 bool hasForceProvider() const;
197 void calculateForces(const gmx::ForceProviderInput
& forceProviderInput
,
198 gmx::ForceProviderOutput
* forceProviderOutput
) const;
203 gmx::PrivateImplPointer
<Impl
> impl_
;