Simpatico  v1.10
EwaldInteraction.h
1 #ifndef SIMP_EWALD_INTERACTION_H
2 #define SIMP_EWALD_INTERACTION_H
3 
4 /*
5 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
6 *
7 * Copyright 2010 - 2012, David Morse (morse012@umn.edu)
8 * Distributed under the terms of the GNU General Public License.
9 */
10 
11 #include <util/param/ParamComposite.h>
12 #include <util/global.h>
13 
14 #include <math.h>
15 
16 namespace Simp
17 {
18 
19  using namespace Util;
20 
33  {
34  public:
35 
40 
46  EwaldInteraction(const EwaldInteraction& other);
47 
54 
59  {}
60 
62 
63 
69  void readParameters(std::istream &in);
70 
76  virtual void loadParameters(Serializable::IArchive &ar);
77 
83  virtual void save(Serializable::OArchive &ar);
84 
91  void set(std::string name, double value);
92 
94 
96 
106  double rSpaceEnergy(double rSq, double qProduct) const;
107 
129  double rSpaceForceOverR(double rSq, double qProduct) const;
130 
137  double kSpacePotential(double kSq) const;
138 
140 
142 
148  double epsilon() const;
149 
155  double alpha() const;
156 
160  double rSpaceCutoff() const;
161 
165  double rSpaceCutoffSq() const;
166 
172  double get(std::string name) const;
173 
175 
176  private:
177 
179  double epsilon_;
180 
182  double alpha_;
183 
185  double rSpaceCutoff_;
186 
187  // Derived constants
188  double rSpaceCutoffSq_;
189  double ce_;
190  double cf_;
191  double cg_;
192 
196  bool isInitialized_;
197 
199  void setDerivedConstants();
200 
201  };
202 
203  // Inline methods
204 
205  /*
206  * Return medium dielectric permittivity.
207  */
208  inline double EwaldInteraction::epsilon() const
209  { return epsilon_; }
210 
211  /*
212  * Return Ewald smearing parameter alpha.
213  */
214  inline double EwaldInteraction::alpha() const
215  { return alpha_; }
216 
217  /*
218  * Return real space cutoff distance.
219  */
220  inline
222  { return rSpaceCutoff_; }
223 
224  /*
225  * Return real space cutoff distance squared.
226  */
227  inline
229  { return rSpaceCutoffSq_; }
230 
231  /*
232  * Compute and return r-space energy for a pair of charges.
233  */
234  inline
235  double EwaldInteraction::rSpaceEnergy(double rSq, double qProduct)
236  const
237  {
238  double r = sqrt(rSq);
239  return ce_*qProduct*erfc(alpha_*r)/r;
240  }
241 
242  /*
243  * Compute and return (r-space force) / distance for a pair of charges.
244  */
245  inline
246  double EwaldInteraction::rSpaceForceOverR(double rSq, double qProduct)
247  const
248  {
249  double r = sqrt(rSq);
250  double x = alpha_*r;
251  return ce_*qProduct*(erfc(x) + cf_*r*exp(-x*x))/(r*rSq);
252  }
253 
254  /*
255  * Calculate k-space potential from squared wavenumber kSq.
256  */
257  inline
258  double EwaldInteraction::kSpacePotential(double kSq) const
259  { return exp(cg_*kSq)/(kSq*epsilon_); }
260 
261 }
262 #endif
EwaldInteraction & operator=(const EwaldInteraction &other)
Assignment.
double kSpacePotential(double kSq) const
Return regularized Fourier-space potential.
~EwaldInteraction()
Default destructor.
double rSpaceForceOverR(double rSq, double qProduct) const
Return ratio of scalar pair interaction force to pair separation.
virtual void save(Serializable::OArchive &ar)
Save internal state to an archive.
File containing preprocessor macros for error handling.
double rSpaceCutoffSq() const
Get real space cutoff squared.
Classes used by all simpatico molecular simulations.
Saving / output archive for binary ostream.
EwaldInteraction()
Default constructor.
double rSpaceEnergy(double rSq, double qProduct) const
Returns r-space interaction energy for a single pair of atoms.
double alpha() const
Get Ewald smearing parameter alpha (inverse length).
Implementation of r-space and k-space Ewald Coulomb interactions.
Utility classes for scientific computation.
Definition: accumulators.mod:1
double rSpaceCutoff() const
Get real space cutoff.
Saving archive for binary istream.
double epsilon() const
Get dielectric permittivity.
An object that can read multiple parameters from file.
virtual void loadParameters(Serializable::IArchive &ar)
Load internal state from an archive.
void readParameters(std::istream &in)
Read epsilon, alpha, and rCutoff.