2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 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.
36 * \brief Declares the force element for the modular simulator
38 * \author Pascal Merz <pascal.merz@me.com>
39 * \ingroup module_modularsimulator
42 #ifndef GMX_MODULARSIMULATOR_FORCEELEMENT_H
43 #define GMX_MODULARSIMULATOR_FORCEELEMENT_H
45 #include "gromacs/domdec/dlbtiming.h"
47 #include "modularsimulatorinterfaces.h"
48 #include "topologyholder.h"
61 class MdScheduleWorkload
;
62 class StatePropagatorData
;
64 //! \addtogroup module_modularsimulator
68 * \brief Force element
70 * The force element manages the call to do_force(...)
72 class ForceElement final
:
73 public ISimulatorElement
,
74 public ITopologyHolderClient
,
75 public INeighborSearchSignallerClient
,
76 public IEnergySignallerClient
81 StatePropagatorData
*statePropagatorData
,
82 EnergyElement
*energyElement
,
86 const t_inputrec
*inputrec
,
87 const MDAtoms
*mdAtoms
,
91 gmx_wallcycle
*wcycle
,
92 MdScheduleWorkload
*mdScheduleWork
,
94 ImdSession
*imdSession
,
97 /*! \brief Register force calculation for step / time
99 * @param step The step number
100 * @param time The time
101 * @param registerRunFunction Function allowing to register a run function
104 Step step
, Time time
,
105 const RegisterRunFunctionPtr
®isterRunFunction
) override
;
107 //! Check that we got the local topology
108 void elementSetup() override
;
109 //! No element teardown needed
110 void elementTeardown() override
{}
113 //! ITopologyHolderClient implementation
114 void setTopology(const gmx_localtop_t
*top
) override
;
115 //! INeighborSearchSignallerClient implementation
116 SignallerCallbackPtr
registerNSCallback() override
;
117 //! IEnergySignallerClient implementation
118 SignallerCallbackPtr
registerEnergyCallback(EnergySignallerEvent event
) override
;
119 //! The actual do_force call
120 void run(Step step
, Time time
, unsigned int flags
);
124 //! The next energy calculation step
125 Step nextEnergyCalculationStep_
;
126 //! The next energy calculation step
127 Step nextVirialCalculationStep_
;
128 //! The next free energy calculation step
129 Step nextFreeEnergyCalculationStep_
;
131 //! Pointer to the micro state
132 StatePropagatorData
*statePropagatorData_
;
133 //! Pointer to the energy element
134 EnergyElement
*energyElement_
;
136 //! The local topology - updated by Topology via Client system
137 const gmx_localtop_t
*localTopology_
;
139 //! Whether we're having a dynamic box
140 const bool isDynamicBox_
;
142 //! DD / DLB helper object
143 const DDBalanceRegionHandler ddBalanceRegionHandler_
;
145 // Access to ISimulator data
148 //! Handles communication.
149 const t_commrec
*cr_
;
150 //! Contains user input mdp options.
151 const t_inputrec
*inputrec_
;
152 //! Atom parameters for this domain.
153 const MDAtoms
*mdAtoms_
;
154 //! Manages flop accounting.
156 //! Manages wall cycle accounting.
157 gmx_wallcycle
*wcycle_
;
158 //! Parameters for force calculations.
160 //! Handles virtual sites.
162 //! The Interactive Molecular Dynamics session.
163 ImdSession
*imdSession_
;
164 //! The pull work object.
166 //! Helper struct for force calculations.
168 //! Schedule of work for each MD step for this task.
169 MdScheduleWorkload
*mdScheduleWork_
;
175 #endif // GMX_MODULARSIMULATOR_FORCEELEMENT_H