image0

PRISM Theory

In this introductory notebook, we will cover a number of concepts from both a theoretical and technical standpoint. The primary goal is to orient you so that you have a basic understanding of Python and the Jupyter environment and the basics of PRISM theory.

Concepts

  • PRISM Equation
  • Total Correlation Function
  • Intra-molecular Correlation Function
  • Direct Correlation Function

The PRISM Equation

image0

PRISM theory describes the spatial correlations between spherical sites which represent either an atomic species or some collection of atoms in the molecule (e.g. a monomer or statistical segment of a polymer chain). By carrying out calculations with multiple site types, one can represent homopolymers with chemically complex monomers, polymer blends, copolymers, nanocomposites, and colloidal solutions. All information about the chemistry and connectively of these systems is encoded into the pair-interactions and intra-molecular correlation functions as will be discussed below.

In general, for a material system that can be represented with \(n\) types of sites, the PRISM equation is written in Fourier space as

\[\hat{H}(k) = \hat{\Omega}(k)\hat{C}(k) [\hat{\Omega}(k) + \hat{H}(k)]\]

with \(\hat{H}(k)\), \(\hat{\Omega}(k)\), and \(\hat{C}(k)\) as \(n \times n\) matrices of correlation values at wavenumber k. Note that the overhat notation and the functional designation \((k)\) indicate that these variables are functions in Fourier-Space. The above equation greatly benefits from the Fourier Convolution Theorem as it is a complicated integral equation in Real-space.

The meaning of each of these variables is briefly discussed below for a three component system with site-types A, B, and C.

Total Correlation Function, \(\hat{H}(k)\)

\[\begin{split}\hat{H}(k) = \begin{bmatrix} \rho^{pair}_{AA} \hat{h}_{AA}(k) & \rho^{pair}_{AB} \hat{h}_{AB}(k) & \rho^{pair}_{AC} \hat{h}_{AC}(k) \\ \rho^{pair}_{BA} \hat{h}_{BA}(k) & \rho^{pair}_{BB} \hat{h}_{BB}(k) & \rho^{pair}_{BC} \hat{h}_{BC}(k) \\ \rho^{pair}_{CA} \hat{h}_{CA}(k) & \rho^{pair}_{CB} \hat{h}_{CB}(k) & \rho^{pair}_{CC} \hat{h}_{CC}(k) \\ \end{bmatrix}\end{split}\]

in which \(\rho^{pair}_{\alpha\beta}=\rho_{\alpha}\rho_{\beta}\) and \(\rho_{\alpha},\rho_{\beta}\) correspond to the site number densities of site types \(\alpha\) and \(\beta\) respectively. In Real-space, \(h_{\alpha\beta}(r)\) corresponds to the pair correlation function (a.k.a radial distribution function) as

\[h_{\alpha\beta}(r) = g_{\alpha\beta}(r) - 1\]

in which \(r\) is the separation distance between sites of type \(\alpha\) and \(\beta\). Note that all spatial correlations matrices are, by definition, symmetric with site-type pairs, i.e. \(h_{\alpha\beta}(r) = h_{\beta,\alpha}(r)\).

\(\hat{H}(k)\) is found as a result of a numerical PRISM calculation.

Intra-molecular Correlation Function, \(\hat{\Omega}(k)\)

\[\begin{split}\hat{\Omega}(k) = \begin{bmatrix} \rho^{site}_{AA} \hat{\omega}_{AA}(k) & \rho^{site}_{AB} \hat{\omega}_{AB}(k) & \rho^{site}_{AC} \hat{\omega}_{AC}(k) \\ \rho^{site}_{BA} \hat{\omega}_{BA}(k) & \rho^{site}_{BB} \hat{\omega}_{BB}(k) & \rho^{site}_{BC} \hat{\omega}_{BC}(k) \\ \rho^{site}_{CA} \hat{\omega}_{CA}(k) & \rho^{site}_{CB} \hat{\omega}_{CB}(k) & \rho^{site}_{CC} \hat{\omega}_{CC}(k) \\ \end{bmatrix}\end{split}\]

in which \(\rho^{site}_{\alpha\beta}=\rho_{\alpha} + \rho_{\beta}\) if \(\alpha \neq \beta\) and \(\rho^{site}_{\alpha\beta}=\rho_{\alpha}\) otherwise. In brief, \(\hat{\Omega}(k)\) specifies the connectivity and structure of the molecules in a system. In contrast to \(\hat{H}(k)\) which only specifies the inter-molecular correlations between molecules, \(\hat{\Omega}(k)\) only describes the correlations within molecules. Each \(\hat{\omega}(k)\) is analagous to a form-factor from PRISM theory.

\(\hat{\Omega}(k)\) is an input to numerical PRISM calculations.

Direct Correlation Function, \(\hat{C}(k)\)

\[\begin{split}\hat{C}(k) = \begin{bmatrix} \hat{c}_{AA}(k) & \hat{c}_{AB}(k) & \hat{c}_{AC}(k) \\ \hat{c}_{BA}(k) & \hat{c}_{BB}(k) & \hat{c}_{BC}(k) \\ \hat{c}_{CA}(k) & \hat{c}_{CB}(k) & \hat{c}_{CC}(k) \\ \end{bmatrix}\end{split}\]

\(\hat{C}(k)\) describes the inter-molecular correlations between sites when many-molecule effects (beyond pair) are removed.

\(\hat{C}(k)\) is found as a result of a numerical PRISM calculation.

Summary

The goal of this notebook is not to comprehensively cover the details of PRISM theory, but rather to give the user the broad strokes of the formalism. Hopefully, the details in this notebook will clarify some of the calculations that users will carry out later.

image0

NB0.Introduction \(\cdot\) NB1.PythonBasics \(\cdot\) NB2.Theory.General \(\cdot\) NB3.Theory.PRISM \(\cdot\) NB4.pyPRISM.Overview \(\cdot\) NB5.CaseStudies.PolymerMelts \(\cdot\) NB6.CaseStudies.Nanocomposites \(\cdot\) NB7.CaseStudies.Copolymers \(\cdot\) NB8.pyPRISM.Internals \(\cdot\) NB9.pyPRISM.Advanced