Loading [MathJax]/extensions/tex2jax.js
IMP logo
IMP Reference Guide  develop.ae08f42f4a,2025/04/02
The Integrative Modeling Platform
CoulombPairScore.h
Go to the documentation of this file.
1 /**
2  * \file IMP/atom/CoulombPairScore.h
3  * \brief Coulomb (electrostatic) score between a pair of particles.
4  *
5  * Copyright 2007-2022 IMP Inventors. All rights reserved.
6  */
7 
8 #ifndef IMPATOM_COULOMB_PAIR_SCORE_H
9 #define IMPATOM_COULOMB_PAIR_SCORE_H
10 
11 #include <IMP/atom/atom_config.h>
12 #include <IMP/generic.h>
13 #include <IMP/PairScore.h>
14 #include <IMP/Pointer.h>
16 #include <IMP/atom/Charged.h>
17 #include <IMP/pair_macros.h>
18 
19 IMPATOM_BEGIN_NAMESPACE
20 
21 //! Coulomb (electrostatic) score between a pair of particles.
22 /** The two particles in the pair must be Charged particles.
23  The form of the potential is \f[
24  \frac{1}{4\pi\epsilon_0\epsilon_r} \frac{q_i q_j}{|r_{ij}|}
25  \f] where \f$\epsilon_0\f$ is the permittivity of vacuum,
26  \f$\epsilon_r\f$ the relative dielectric (adjustable; 1.0 by default),
27  \f$q_i\f$ and \f$q_j\f$ the charges on the two particles,
28  and \f$|r_{ij}|\f$ the distance between them.
29  */
30 class IMPATOMEXPORT CoulombPairScore : public PairScore {
31  IMP::PointerMember<SmoothingFunction> smoothing_function_;
32  double relative_dielectric_;
33  double multiplication_factor_;
34 
35  void calculate_multiplication_factor();
36 
37  double evaluate_index_fast(Model *m,
38  const ParticleIndexPair &p,
40  const double *charge_array) const;
41 
42  public:
43  CoulombPairScore(SmoothingFunction *f) : smoothing_function_(f) {
44  set_relative_dielectric(1.0);
45  }
46 
47  void set_relative_dielectric(double relative_dielectric) {
48  relative_dielectric_ = relative_dielectric;
49  calculate_multiplication_factor();
50  }
51 
52  double get_relative_dielectric() const { return relative_dielectric_; }
53 
54  virtual double evaluate_index(Model *m,
55  const ParticleIndexPair &p,
56  DerivativeAccumulator *da) const override;
58  Model *m, const ParticleIndexes &pis) const override;
59  virtual bool check_indexes(Model *m,
60  const ParticleIndexes &pis) const override;
62  const double *charge_array = Charged::get_charge_array(m),
63  evaluate_index_fast(m, p[i], da, charge_array) );
65  ;
66 };
67 
69 
70 IMPATOM_END_NAMESPACE
71 
72 #endif /* IMPATOM_COULOMB_PAIR_SCORE_H */
Abstract class for scoring object(s) of type ParticleIndexPair.
Definition: PairScore.h:44
Macros for various classes.
Coulomb (electrostatic) score between a pair of particles.
#define IMP_OBJECT_METHODS(Name)
Define the basic things needed by any Object.
Definition: object_macros.h:25
A more IMP-like version of the std::vector.
Definition: Vector.h:50
Class for storing model, its restraints, constraints, and particles.
Definition: Model.h:86
Define PairScore.
A smart pointer to a ref-counted Object that is a class member.
Definition: Pointer.h:143
virtual ModelObjectsTemp do_get_inputs(Model *m, const ParticleIndexes &pis) const =0
Overload this method to specify the inputs.
virtual bool check_indexes(Model *m, const ParticleIndexes &pis) const
Check the given particle indexes for necessary attributes.
Definition: PairScore.h:73
Classes to smooth nonbonded interactions.
A decorator for a point particle that has an electrostatic charge.
#define IMP_OBJECTS(Name, PluralName)
Define the types for storing lists of object pointers.
Definition: object_macros.h:44
A nullptr-initialized pointer to an IMP Object.
Base class for smoothing nonbonded interactions as a function of distance.
#define IMP_PAIR_SCORE_METHODS_UNCHECKED(Name, Setup, Evaluate)
Definition: pair_macros.h:91
virtual double evaluate_index(Model *m, const ParticleIndexPair &vt, DerivativeAccumulator *da) const =0
Compute the score and the derivative if needed.
Class for adding derivatives from restraints to the model.
Compile-time generic restraint and constraint support.