Simpatico  v1.10
McPerturbationFactory.cpp
1 #ifdef MCMD_PERTURB
2 /*
3 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
4 *
5 * Copyright 2010 - 2017, The Regents of the University of Minnesota
6 * Distributed under the terms of the GNU General Public License.
7 */
8 
9 #include "McPerturbationFactory.h"
10 
11 // Subclasses of Perturbation
12 #include "McEnergyPerturbation.h"
13 #ifndef SIMP_NOPAIR
14 #include "McPairPerturbation.h"
15 #include <mcMd/mcSimulation/McSystem.h>
16 #include <mcMd/potentials/pair/McPairPotential.h>
17 #include <simp/interaction/pair/LJPair.h>
18 #include <simp/interaction/pair/DpdPair.h>
19 #endif
20 
21 #ifdef SIMP_EXTERNAL
22 #include "McExternalPerturbation.h"
23 #include <mcMd/mcSimulation/McSystem.h>
24 #include <mcMd/potentials/external/ExternalPotential.h>
25 #include <simp/interaction/external/LamellarOrderingExternal.h>
26 #include <simp/interaction/external/PeriodicExternal.h>
27 #ifndef SIMP_NOPAIR
28 #include "McPairExternalPerturbation.h"
29 #include <mcMd/potentials/pair/McPairPotential.h>
30 #include <simp/interaction/pair/LJPair.h>
31 #include <simp/interaction/pair/DpdPair.h>
32 #endif
33 #endif
34 
35 namespace McMd
36 {
37 
38  using namespace Util;
39  using namespace Simp;
40 
42  : systemPtr_(&system)
43  {}
44 
45  /*
46  * Return a pointer to a instance of Peturbation subclass className.
47  */
48  Perturbation* McPerturbationFactory::factory(const std::string &className) const
49  {
50  Perturbation *ptr = 0;
51 
52  // Try subfactories first
53  ptr = trySubfactories(className);
54  if (ptr) return ptr;
55 
56  int size = systemPtr_->simulation().communicator().Get_size();
57  int rank = systemPtr_->simulation().communicator().Get_rank();
58 
59  if (className == "McEnergyPerturbation") {
60  ptr = new McEnergyPerturbation(*systemPtr_, size, rank);
61  }
62  #ifndef SIMP_NOPAIR
63  else if (className == "McPairPerturbation") {
64  const std::string& interactionClassName
65  = systemPtr_->pairPotential().interactionClassName();
66  if (interactionClassName == "LJPair") {
67  ptr = new McPairPerturbation<LJPair> (*systemPtr_, size, rank);
68  } else if (interactionClassName == "DpdPair") {
69  ptr = new McPairPerturbation<DpdPair> (*systemPtr_, size, rank);
70  } else {
71  UTIL_THROW("Unsupported pair potential.");
72  }
73  }
74  #endif
75  #ifdef SIMP_EXTERNAL
76  #ifndef SIMP_NOPAIR
77  else if (className == "McPairExternalPerturbation") {
78  const std::string& pairInteractionClassName
79  = systemPtr_->pairPotential().interactionClassName();
80  const std::string& externalInteractionClassName
81  = systemPtr_->externalPotential().interactionClassName();
82  if (pairInteractionClassName == "LJPair") {
83  if (externalInteractionClassName == "LamellarOrderingExternal") {
84  ptr = new McPairExternalPerturbation<LJPair,LamellarOrderingExternal> (*systemPtr_, size, rank);
85  } else if (externalInteractionClassName == "PeriodicExternal") {
86  ptr = new McPairExternalPerturbation<LJPair,PeriodicExternal> (*systemPtr_, size, rank);
87  } else {
88  UTIL_THROW("Unsupported external potential.");
89  }
90  } else if (pairInteractionClassName == "DpdPair") {
91  if (externalInteractionClassName == "LamellarOrderingExternal") {
92  ptr = new McPairExternalPerturbation<DpdPair,LamellarOrderingExternal> (*systemPtr_, size, rank);
93  } else if (externalInteractionClassName == "PeriodicExternal") {
94  ptr = new McPairExternalPerturbation<DpdPair,PeriodicExternal> (*systemPtr_, size, rank);
95  } else {
96  UTIL_THROW("Unsupported external potential.");
97  }
98  } else {
99  UTIL_THROW("Unsupported pair potential.");
100  }
101  }
102  #endif
103  #endif
104  #ifdef SIMP_EXTERNAL
105  else if (className == "McExternalPerturbation") {
106  const std::string& interactionClassName
107  = systemPtr_->externalPotential().interactionClassName();
108  if (interactionClassName == "LamellarOrderingExternal") {
109  ptr = new McExternalPerturbation<LamellarOrderingExternal>(*systemPtr_, size, rank);
110  } else if (interactionClassName == "PeriodicExternal") {
111  ptr = new McExternalPerturbation<PeriodicExternal> (*systemPtr_, size, rank);
112  } else {
113  UTIL_THROW("Unsupported external potential.");
114  }
115  }
116  #endif
117  return ptr;
118  }
119 
120 }
121 #endif // #ifdef MCMD_PERTURB
McPerturbationFactory(McSystem &system)
Constructor.
A System for use in a Markov chain Monte Carlo simulation.
Definition: McSystem.h:52
Perturbation * factory(const std::string &className) const
Method to create any species supplied with Simpatico.
A Perturbation in the external potential external parameter.
Classes used by all simpatico molecular simulations.
A Perturbation with a variable inverse temperature.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Definition: global.h:51
Simulation & simulation() const
Get the parent Simulation by reference.
Definition: System.h:1055
ExternalPotential & externalPotential() const
Return ExternalPotential by reference.
Definition: McSystem.h:473
Perturbation * trySubfactories(const std::string &className) const
Search through subfactories for match.
Utility classes for scientific computation.
Definition: accumulators.mod:1
A Perturbation in the pair interaction epsilon(0,1) for any pair potential supporting setEpsilon() an...
MPI::Intracomm & communicator()
Get the MPI communicator by reference.
A Perturbation in the pair interaction epsilon(0,1) for any pair potential supporting setEpsilon()...
Model of parameter dependence in a free energy perturbation theory.
Definition: Perturbation.h:39
McPairPotential & pairPotential() const
Return the McPairPotential by reference.
Definition: McSystem.h:388
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
virtual std::string interactionClassName() const =0
Return name of external interaction class (e.g., "LamellarOrderingExternal").
virtual std::string interactionClassName() const =0
Return name of pair interaction class (e.g., "LJPair").