Simpatico  v1.10
Modifier.h
1 #ifndef DDMD_MODIFIER_H
2 #define DDMD_MODIFIER_H
3 
4 #include <util/param/ParamComposite.h> // base class
5 #include <util/misc/Bit.h> // constants in namespace
6 
7 /*
8 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
9 *
10 * Copyright 2010 - 2017, The Regents of the University of Minnesota
11 * Distributed under the terms of the GNU General Public License.
12 */
13 
14 #include <iostream>
15 
16 namespace DdMd
17 {
18 
19  class Simulation;
20  using namespace Util;
21 
82  class Modifier : public ParamComposite
83  {
84 
85  public:
86 
90  Modifier();
91 
95  Modifier(Simulation& simulation);
96 
100  virtual ~Modifier();
101 
103 
104 
108  virtual void setup(){};
109 
115  virtual void preIntegrate1(long iStep) {};
116 
122  virtual void postIntegrate1(long iStep) {};
123 
129  virtual void preTransform(long iStep) {};
130 
136  virtual void preExchange(long iStep) {};
137 
143  virtual void postExchange(long iStep) {};
144 
150  virtual void postNeighbor(long iStep) {};
151 
157  virtual void preUpdate(long iStep) {};
158 
164  virtual void postUpdate(long iStep) {};
165 
171  virtual void preForce(long iStep) {};
172 
178  virtual void postForce(long iStep) {};
179 
185  virtual void endOfStep(long iStep) {};
186 
188 
190 
194  virtual void packExchange() {};
195 
199  virtual void unpackExchange() {};
200 
204  virtual void packUpdate() {};
205 
209  virtual void unpackUpdate() {};
210 
216  virtual void packReverseUpdate() {};
217 
223  virtual void unpackReverseUpdate() {};
224 
226 
228 
245  class Flags
246  {
247  public:
248 
250  static const Bit Setup;
251 
253  static const Bit PreIntegrate1;
254 
256  static const Bit PostIntegrate1;
257 
259  static const Bit PreTransform;
260 
262  static const Bit PreExchange;
263 
265  static const Bit PostExchange;
266 
268  static const Bit PostNeighbor;
269 
271  static const Bit PreUpdate;
272 
274  static const Bit PostUpdate;
275 
277  static const Bit PreForce;
278 
280  static const Bit PostForce;
281 
283  static const Bit EndOfStep;
284 
286  static const Bit Exchange;
287 
289  static const Bit Update;
290 
292  static const Bit ReverseUpdate;
293  };
294 
298  bool isSet(Bit flag) const;
299 
303  unsigned int flags() const;
304 
306 
308 
312  int interval() const;
313 
319  bool isAtInterval(long iStep) const;
320 
322 
326  static void initStatic();
327 
328  protected:
329 
333  Simulation& simulation();
334 
338  void set(Bit flag);
339 
345  void readInterval(std::istream &in);
346 
352  void loadInterval(Serializable::IArchive &ar);
353 
359  void saveInterval(Serializable::OArchive &ar);
360 
361  private:
362 
364  unsigned int flags_;
365 
367  long interval_;
368 
370  Simulation* simulationPtr_;
371 
372  };
373 
374  // Inline member functions
375 
376  /*
377  * Return interval value.
378  */
379  inline int Modifier::interval() const
380  { return interval_; }
381 
382  /*
383  * Return true iff the iStep is a multiple of the interval.
384  */
385  inline bool Modifier::isAtInterval(long iStep) const
386  { return (iStep%interval_ == 0); }
387 
388  /*
389  * Get the parent Simulation by reference.
390  */
392  { return *simulationPtr_; }
393 
394 }
395 #endif
virtual void preIntegrate1(long iStep)
Call just before the first step of velocity-Verlet algorithm.
Definition: Modifier.h:115
bool isAtInterval(long iStep) const
Return true iff iStep is a multiple of the interval.
Definition: Modifier.h:385
static const Bit Update
Flag to activate pack/unpack update functions.
Definition: Modifier.h:289
static const Bit PostForce
Flag to activate postForce() function.
Definition: Modifier.h:280
virtual void setup()
Setup before entering the main loop.
Definition: Modifier.h:108
virtual void unpackExchange()
Unpack data from buffer used to exchange atoms.
Definition: Modifier.h:199
static const Bit PreTransform
Flag to activate preTransform() function.
Definition: Modifier.h:259
Simulation & simulation()
Get the parent Simulation by reference.
Definition: Modifier.h:391
static const Bit PreExchange
Flag to activate preExchange() function.
Definition: Modifier.h:262
virtual void postUpdate(long iStep)
Call on update steps after updating ghost positions.
Definition: Modifier.h:164
static const Bit Setup
Flag to activate setup() function.
Definition: Modifier.h:250
static const Bit ReverseUpdate
Flag to activate pack/unpack reverse update functions.
Definition: Modifier.h:292
virtual void packExchange()
Pack data into buffer used to exchange atoms.
Definition: Modifier.h:194
static const Bit PreIntegrate1
Flag to activate preIntegrate() function.
Definition: Modifier.h:253
Parallel domain decomposition (DD) MD simulation.
Bit flag constants associated with particular actions.
Definition: Modifier.h:245
Main object for a domain-decomposition MD simulation.
static const Bit PostIntegrate1
Flag to activate postIntegrate1() function.
Definition: Modifier.h:256
Saving / output archive for binary ostream.
static const Bit PreUpdate
Flag to activate preUpdate() function.
Definition: Modifier.h:271
virtual void preTransform(long iStep)
Call on exchange steps before transforming to scaled atomic coordinates.
Definition: Modifier.h:129
static const Bit PostExchange
Flag to activate postExchange() function.
Definition: Modifier.h:265
static const Bit PreForce
Flag to activate preForce() function.
Definition: Modifier.h:277
virtual void unpackUpdate()
Unpack data from buffer used to update ghost positions.
Definition: Modifier.h:209
Utility classes for scientific computation.
Definition: accumulators.mod:1
virtual void preExchange(long iStep)
Call on exchange steps after transforming but before exchanging atoms.
Definition: Modifier.h:136
static const Bit PostNeighbor
Flag to activate postNeighbor() function.
Definition: Modifier.h:268
static const Bit Exchange
Flag to activate pack/unpack exchange functions.
Definition: Modifier.h:286
virtual void postForce(long iStep)
Call after calculating forces.
Definition: Modifier.h:178
int interval() const
Get interval value.
Definition: Modifier.h:379
static const Bit EndOfStep
Flag to activate endOfStep() function.
Definition: Modifier.h:283
virtual void unpackReverseUpdate()
Unpack data from the buffer used to reverse update forces.
Definition: Modifier.h:223
virtual void postIntegrate1(long iStep)
Call just after the first step of velocity-Verlet algorithm.
Definition: Modifier.h:122
virtual void postNeighbor(long iStep)
Call on exchange steps after re-building neighbor list (reneighboring).
Definition: Modifier.h:150
virtual void postExchange(long iStep)
Call on exchange steps after atom exchange, before reneighboring.
Definition: Modifier.h:143
Saving archive for binary istream.
virtual void packReverseUpdate()
Pack data into buffer used to reverse update forces.
Definition: Modifier.h:216
void initStatic()
Guarantee initialization of all static class members in DdMd namespace.
Represents a specific bit location within an unsigned int.
Definition: Bit.h:21
static const Bit PostUpdate
Flag to activate postUpdate() function.
Definition: Modifier.h:274
virtual void packUpdate()
Pack data into buffer used to update ghost positions.
Definition: Modifier.h:204
virtual void preUpdate(long iStep)
Call on update steps before updating ghost positions.
Definition: Modifier.h:157
virtual void preForce(long iStep)
Call after updating but before calculating forces.
Definition: Modifier.h:171
virtual void endOfStep(long iStep)
Call at the end of the time step.
Definition: Modifier.h:185
An object that can read multiple parameters from file.
A Modifier can modify the time evolution of the simulation.
Definition: Modifier.h:82