Domain decomposition and PME load balancing for modular simulator
[gromacs.git] / src / gromacs / modularsimulator / forceelement.h
blobcadb921b84918c7a84df1f6f8348101c8f2f006d
1 /*
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.
35 /*! \libinternal
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"
50 struct gmx_wallcycle;
51 struct pull_t;
52 struct t_fcdata;
53 struct t_nrnb;
55 namespace gmx
57 class Awh;
58 class EnergyElement;
59 class ImdSession;
60 class MDAtoms;
61 class MdScheduleWorkload;
62 class StatePropagatorData;
64 //! \addtogroup module_modularsimulator
65 //! \{
67 /*! \libinternal
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
78 public:
79 //! Constructor
80 ForceElement(
81 StatePropagatorData *statePropagatorData,
82 EnergyElement *energyElement,
83 bool isDynamicBox,
84 FILE *fplog,
85 const t_commrec *cr,
86 const t_inputrec *inputrec,
87 const MDAtoms *mdAtoms,
88 t_nrnb *nrnb,
89 t_forcerec *fr,
90 t_fcdata *fcd,
91 gmx_wallcycle *wcycle,
92 MdScheduleWorkload *mdScheduleWork,
93 gmx_vsite_t *vsite,
94 ImdSession *imdSession,
95 pull_t *pull_work);
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
103 void scheduleTask(
104 Step step, Time time,
105 const RegisterRunFunctionPtr &registerRunFunction) override;
107 //! Check that we got the local topology
108 void elementSetup() override;
109 //! No element teardown needed
110 void elementTeardown() override {}
112 private:
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);
122 //! The next NS step
123 Step nextNSStep_;
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
146 //! Handles logging.
147 FILE *fplog_;
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.
155 t_nrnb *nrnb_;
156 //! Manages wall cycle accounting.
157 gmx_wallcycle *wcycle_;
158 //! Parameters for force calculations.
159 t_forcerec *fr_;
160 //! Handles virtual sites.
161 gmx_vsite_t *vsite_;
162 //! The Interactive Molecular Dynamics session.
163 ImdSession *imdSession_;
164 //! The pull work object.
165 pull_t *pull_work_;
166 //! Helper struct for force calculations.
167 t_fcdata *fcd_;
168 //! Schedule of work for each MD step for this task.
169 MdScheduleWorkload *mdScheduleWork_;
172 //! \}
173 } // namespace gmx
175 #endif // GMX_MODULARSIMULATOR_FORCEELEMENT_H