source: sasmodels/sasmodels/models/polymer_micelle.py @ c1e44e5

Last change on this file since c1e44e5 was c1e44e5, checked in by Paul Kienzle <pkienzle@…>, 5 years ago

Add local link to source files. Refs #1263.

  • Property mode set to 100644
File size: 5.8 KB
Line 
1r"""
2
3This model provides the form factor, $P(q)$, for a micelle with a spherical
4core and Gaussian polymer chains attached to the surface, thus may be applied
5to block copolymer micelles. To work well the Gaussian chains must be much
6smaller than the core, which is often not the case.  Please study the
7reference carefully.
8
9Definition
10----------
11
12The 1D scattering intensity for this model is calculated according to
13the equations given by Pedersen (Pedersen, 2000), summarised briefly here.
14
15The micelle core is imagined as $N$ = *n_aggreg* polymer heads, each of volume
16$V_\text{core}$, which then defines a micelle core of radius $r$ = *r_core*,
17which is a separate parameter even though it could be directly determined.
18The Gaussian random coil tails, of gyration radius $R_g$, are imagined
19uniformly distributed around the spherical core, centred at a distance
20$r + d \cdot R_g$ from the micelle centre, where $d$ = *d_penetration* is
21of order unity. A volume $V_\text{corona}$ is defined for each coil. The
22model in detail seems to separately parametrise the terms for the shape
23of $I(Q)$ and the relative intensity of each term, so use with caution
24and check parameters for consistency. The spherical core is monodisperse,
25so it's intensity and the cross terms may have sharp oscillations (use $q$
26resolution smearing if needs be to help remove them).
27
28.. math::
29    P(q) &= N^2\beta^2_s\Phi(qr)^2 + N\beta^2_cP_c(q)
30            + 2N^2\beta_s\beta_cS_{sc}(q) + N(N-1)\beta_c^2S_{cc}(q) \\
31    \beta_s &= V_\text{core}(\rho_\text{core} - \rho_\text{solvent}) \\
32    \beta_c &= V_\text{corona}(\rho_\text{corona} - \rho_\text{solvent})
33
34where $\rho_\text{core}$, $\rho_\text{corona}$ and $\rho_\text{solvent}$ are
35the scattering length densities *sld_core*, *sld_corona* and *sld_solvent*.
36For the spherical core of radius $r$
37
38.. math::
39   \Phi(qr)= \frac{\sin(qr) - qr\cos(qr)}{(qr)^3}
40
41whilst for the Gaussian coils
42
43.. math::
44
45   P_c(q) &= 2 [\exp(-Z) + Z - 1] / Z^2 \\
46   Z &= (q R_g)^2
47
48The sphere to coil (core to corona) and coil to coil (corona to corona) cross
49terms are approximated by:
50
51.. math::
52
53   S_{sc}(q) &= \Phi(qr)\psi(Z)
54       \frac{\sin(q(r+d \cdot R_g))}{q(r+d \cdot R_g)} \\
55   S_{cc}(q) &= \psi(Z)^2
56       \left[\frac{\sin(q(r+d \cdot R_g))}{q(r+d \cdot R_g)} \right]^2 \\
57   \psi(Z) &= \frac{[1-\exp^{-Z}]}{Z}
58
59Validation
60----------
61
62$P(q)$ above is multiplied by *ndensity*, and a units conversion of $10^{-13}$,
63so *scale* is likely 1.0 if the scattering data is in absolute units. This
64model has not yet been independently validated.
65
66
67References
68----------
69
70.. [#] J Pedersen, *J. Appl. Cryst.*, 33 (2000) 637-640
71
72Authorship and Verification
73----------------------------
74
75* **Translated by   :** Richard Heenan **Date:** March 20, 2016
76* **Last modified by:** Paul Kienzle **Date:** November 29, 2017
77* **Last reviewed by:** Steve King **Date:** November 30, 2017
78"""
79
80import numpy as np
81from numpy import inf, pi
82
83name = "polymer_micelle"
84title = "Polymer micelle model"
85description = """
86This model provides the form factor, $P(q)$, for a micelle with a spherical
87core and Gaussian polymer chains attached to the surface, thus may be applied
88to block copolymer micelles. To work well the Gaussian chains must be much
89smaller than the core, which is often not the case.  Please study the
90reference to Pedersen and full documentation carefully.
91    """
92
93
94category = "shape:sphere"
95
96# pylint: disable=bad-whitespace, line-too-long
97#   ["name", "units", default, [lower, upper], "type","description"],
98parameters = [
99    ["ndensity",      "1e15/cm^3",  8.94, [0.0, inf], "", "Number density of micelles"],
100    ["v_core",        "Ang^3",  62624.0,  [0.0, inf], "", "Core volume "],
101    ["v_corona",      "Ang^3",  61940.0,  [0.0, inf], "", "Corona volume"],
102    ["sld_solvent",   "1e-6/Ang^2", 6.4,  [0.0, inf], "sld", "Solvent scattering length density"],
103    ["sld_core",      "1e-6/Ang^2", 0.34, [0.0, inf], "sld", "Core scattering length density"],
104    ["sld_corona",    "1e-6/Ang^2", 0.8,  [0.0, inf], "sld", "Corona scattering length density"],
105    ["radius_core",   "Ang",       45.0,  [0.0, inf], "", "Radius of core ( must be >> rg )"],
106    ["rg",    "Ang",       20.0,  [0.0, inf], "", "Radius of gyration of chains in corona"],
107    ["d_penetration", "",           1.0,  [-inf, inf], "", "Factor to mimic non-penetration of Gaussian chains"],
108    ["n_aggreg",      "",           6.0,  [-inf, inf], "", "Aggregation number of the micelle"],
109    ]
110# pylint: enable=bad-whitespace, line-too-long
111
112single = False
113
114source = ["lib/sas_3j1x_x.c", "polymer_micelle.c"]
115
116def random():
117    """Return a random parameter set for the model."""
118    radius_core = 10**np.random.uniform(1, 3)
119    rg = radius_core * 10**np.random.uniform(-2, -0.3)
120    d_penetration = np.random.randn()*0.05 + 1
121    n_aggreg = np.random.randint(3, 30)
122    # volume of head groups is the core volume over the number of groups,
123    # with a correction for packing fraction of the head groups.
124    v_core = 4*pi/3*radius_core**3/n_aggreg * 0.68
125    # Rg^2 for gaussian coil is a^2n/6 => a^2 = 6 Rg^2/n
126    # a=2r => r = Rg sqrt(3/2n)
127    # v = 4/3 pi r^3 n => v = 4/3 pi Rg^3 (3/2n)^(3/2) n = pi Rg^3 sqrt(6/n)
128    tail_segments = np.random.randint(6, 30)
129    v_corona = pi * rg**3 * np.sqrt(6/tail_segments)
130    V = 4*pi/3*(radius_core + rg)**3
131    pars = dict(
132        background=0,
133        scale=1e7/V,
134        ndensity=8.94,
135        v_core=v_core,
136        v_corona=v_corona,
137        radius_core=radius_core,
138        rg=rg,
139        d_penetration=d_penetration,
140        n_aggreg=n_aggreg,
141    )
142    return pars
143
144tests = [
145    [{}, 0.01, 15.3532],
146    ]
147# RKH 20Mar2016 - need to check whether the core & corona volumes are per
148#                 monomer ??? and how aggregation number works!
149# renamed from micelle_spherical_core to polymer_micelle,
150# moved from shape-independent to spheres section.
151# Ought to be able to add polydisp to core? And add ability to x by S(Q) ?
Note: See TracBrowser for help on using the repository browser.