Notes on Madden Potential

The Madden potential is an aspherical ion potential, that accounts for the shape and polarization of the atoms.

The implementation of the Madden potential class in ATK-ForceField is taken from Ref. [1].

The potential energy consists of the following four contributions:

\[V^{\rm Madden} = V^{\rm Coulomb} + V^{\rm Dispersion} + V^{\rm Repulsion} + V^{\rm Polarization} \, ,\]

where \(V^{\rm Coulomb}\) is the normal Coulomb potential, which is based on the charges specified in the ParticleType and which can be calculated using one of the Coulomb solvers (e.g., CoulombDSF).

The dispersion potential MaddenDispersivePotential between two particles is given by

\[V_{ij}^{\rm Dispersion}(r) = - \left[(1 - TT^{6} (r)) \frac{C_{ij}^6}{r^6} + (1 - TT^{8} (r))\frac{C_{ij}^8}{r^8} \right] \, ,\]

where \(TT^n\) is the Tang–Toennis damping function:

\[TT^n(r) = c_{ij} e^{-b_{ij} r} \sum_{k=0}^{k_n^{max}} \frac{(b_{ij} r_{ij})^k}{k!}\, .\]

In the current implementation, \(c_{ij}\) is fixed to 1.

The Madden potential implements anisotropic shape deformation and polarization of selected particles. Both deformation and polarization consist of a self-energy term and an inter-particle contribution.

The self-energy term of the repulsive potential is given by

\[V_i^{\rm Repulsion} = D_i (e^{\beta_i \sigma_i} + e^{-\beta_i \sigma_i}) + \gamma_i (e^{\zeta_i^2 \lvert \nu_i \rvert ^2} + e^{\eta_i^2 \lvert \kappa_i \rvert ^2} - 2) \, .\]

The variables \(\sigma\), \(\nu\), and \(\kappa\) represent the deviation in the particle radius from the default value, the dipole-like shape distortion, and the quadrupole-like shape distortion. The particle-specific parameters can be given in MaddenParticle.

The inter-particle term is given by

\[V_{ij}^{\rm Repulsion} = A_{ij} e^{-a_{ij} \rho_{ij}} + B_{ij} e^{-b_{ij} \rho_{ij}} + C_{ij} e^{-c_{ij} \rho_{ij}} \, ,\]

with

\[\rho_{ij} = r_{ij} - \sigma_i - \sum_{\alpha} \frac{r_{ij}^{\alpha}}{r_{ij}} \nu_i^{\alpha} - \sum_{\alpha, \beta}\frac{r_{ij}^{\alpha}r_{ij}^{\beta}}{r_{ij}^2}\kappa_i^{\alpha\beta} \, .\]

The pair dependent parameters are specified in MaddenRepulsivePotential.

Finally, the contributions arising from all Madden particles are added

\[V^{\rm Repulsion} = \sum V_i^{\rm Repulsion} + \sum_{i \neq j} V_{ij}^{\rm Repulsion} \, .\]

The polarization contribution contains a self-energy which is given by

\[V_{i}^{\rm Polarization} = \frac{1}{2\alpha_i} | \mu_i |^2 + \sum_{\beta, \gamma}\frac{1}{6 C_i} \theta_i^{\beta\gamma} \theta_i^{\beta\gamma} \, .\]

The electrostatic contribution between all polarizable particles is given by

\[V_{ij}^{\rm Polarization} = -\sum_{\alpha} q_j \mu_i^{\alpha} T^{\alpha} + \sum_{\alpha, \beta} \left(\frac{q_j \theta_i^{\alpha\beta}}{3} - \frac{1}{2}\mu_i^{\alpha}\mu_j^{\beta} \right) T^{\alpha\beta}\]
\[+ \sum_{\alpha, \beta, \gamma} \frac{1}{3} \mu_j^{\alpha}\theta_i^{\beta\gamma} T^{\alpha\beta\gamma} + \sum_{\alpha, \beta, \gamma, \delta} \frac{1}{18}\theta_i^{\alpha\beta}\theta_j^{\gamma\delta} T^{\alpha\beta\gamma\delta} \, ,\]

whereas the interaction between a polarizable particle \(i\) and a non-polarizable particle \(j\) is given by

\[-q_j \mu_i^{\alpha} T^{\alpha} + \sum_{\alpha, \beta} \frac{q_j \theta_i^{\alpha\beta}}{3} T^{\alpha\beta} \, .\]

The variables \(\mu\) and \(\theta\) denote dipole and quadrupole polarization of a particle. The \(T_{\alpha\beta..}\) symbols denote multipole-interaction tensors (see [1] for details). The particle-specific parameter values are again set in MaddenParticle

The electrostatic interaction between two particles can be modified by damping functions \(TT_D(r)\) and \(TT_{Q}(r)\) (see [1]) yielding

\[V_{ij}^{\rm Polarization-damping}(r) = \sum_{\alpha} q_j \mu_i^{\alpha} TT_{D}(r) T^{\alpha} - \sum_{\alpha, \beta} \frac{TT_{Q}(r)}{3} q_j \theta_i^{\alpha\beta} T^{\alpha\beta} \, .\]

The corresponding parameters are specified in MaddenPolarizationDampingPotential.

Similar to the repulsion potential, the total polarization energy is calculated by adding the contributions of all polarizable particles, and between polarizable and non-polarizable particle pairs.

The long-range contributions of the electrostatic interactions in the Madden potential can be evaluated using the Ewald summation technique. The corresponding parameters are set in MaddenEwaldOption.