source: sasmodels/sasmodels/models/poly_gauss_coil.py

Last change on this file 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: 4.2 KB
Line 
1#poly_gauss_coil model
2#conversion of Poly_GaussCoil.py
3#converted by Steve King, Mar 2016
4r"""
5This empirical model describes the scattering from *polydisperse* polymer
6chains in theta solvents or polymer melts, assuming a Schulz-Zimm type
7molecular weight distribution.
8
9To describe the scattering from *monodisperse* polymer chains, see the
10:ref:`mono-gauss-coil` model.
11
12Definition
13----------
14
15.. math::
16
17     I(q) = \text{scale} \cdot I_0 \cdot P(q) + \text{background}
18
19where
20
21.. math::
22
23     I_0 &= \phi_\text{poly} \cdot V \cdot (\rho_\text{poly}-\rho_\text{solv})^2 \\
24     P(q) &= 2 [(1 + UZ)^{-1/U} + Z - 1] / [(1 + U) Z^2] \\
25     Z &= [(q R_g)^2] / (1 + 2U) \\
26     U &= (Mw / Mn) - 1 = \text{polydispersity ratio} - 1 \\
27     V &= M / (N_A \delta)
28
29Here, $\phi_\text{poly}$, is the volume fraction of polymer, $V$ is the
30volume of a polymer coil, $M$ is the molecular weight of the polymer,
31$N_A$ is Avogadro's Number, $\delta$ is the bulk density of the polymer,
32$\rho_\text{poly}$ is the sld of the polymer, $\rho_\text{solv}$ is the
33sld of the solvent, and $R_g$ is the radius of gyration of the polymer coil.
34
35The 2D scattering intensity is calculated in the same way as the 1D,
36but where the $q$ vector is redefined as
37
38.. math::
39
40    q = \sqrt{q_x^2 + q_y^2}
41
42References
43----------
44
45.. [#] O Glatter and O Kratky (editors), *Small Angle X-ray Scattering*, Academic Press, (1982) Page 404
46.. [#] J S Higgins, H C Benoit, *Polymers and Neutron Scattering*, Oxford Science Publications, (1996)
47.. [#] S M King, *Small Angle Neutron Scattering* in *Modern Techniques for Polymer Characterisation*, Wiley, (1999)
48.. [#] http://www.ncnr.nist.gov/staff/hammouda/distance_learning/chapter_28.pdf
49
50Authorship and Verification
51----------------------------
52
53* **Author:**
54* **Last Modified by:**
55* **Last Reviewed by:**
56"""
57
58import numpy as np
59from numpy import inf, expm1, power
60
61name = "poly_gauss_coil"
62title = "Scattering from polydisperse polymer coils"
63
64description = """
65    Evaluates the scattering from
66    polydisperse polymer chains.
67    """
68category = "shape-independent"
69
70# pylint: disable=bad-whitespace, line-too-long
71#   ["name", "units", default, [lower, upper], "type", "description"],
72parameters = [
73    ["i_zero",          "1/cm", 70.0, [0.0, inf], "", "Intensity at q=0"],
74    ["rg",  "Ang", 75.0, [0.0, inf], "", "Radius of gyration"],
75    ["polydispersity",  "None",  2.0, [1.0, inf], "", "Polymer Mw/Mn"],
76    ]
77# pylint: enable=bad-whitespace, line-too-long
78
79# NB: Scale and Background are implicit parameters on every model
80def Iq(q, i_zero, rg, polydispersity):
81    # pylint: disable = missing-docstring
82    u = polydispersity - 1.0
83    z = q**2 * (rg**2 / (1.0 + 2.0*u))
84
85    # need to trap the case of the polydispersity being 1 (ie, monodisperse!)
86    if polydispersity == 1.0:
87        result = 2.0 * (expm1(-z) + z)
88        index = q != 0.
89        result[index] /= z[index]**2
90        result[~index] = 1.0
91    else:
92        # Taylor series around z=0 of (2*(1+uz)^(-1/u) + z - 1) / (z^2(u+1))
93        p = [
94            #(-1 - 20*u - 155*u**2 - 580*u**3 - 1044*u**4 - 720*u**5) / 2520.,
95            #(+1 + 14*u + 71*u**2 + 154*u**3 + 120*u**4) / 360.,
96            #(-1 - 9*u - 26*u**2 - 24*u**3) / 60.,
97            (+1 + 5*u + 6*u**2) / 12.,
98            (-1 - 2*u) / 3.,
99            (+1),
100            ]
101        result = 2.0 * (power(1.0 + u*z, -1.0/u) + z - 1.0) / (1.0 + u)
102        index = z > 1e-4
103        result[index] /= z[index]**2
104        result[~index] = np.polyval(p, z[~index])
105    return i_zero * result
106Iq.vectorized = True  # Iq accepts an array of q values
107
108def random():
109    """Return a random parameter set for the model."""
110    rg = 10**np.random.uniform(0, 4)
111    #rg = 1e3
112    polydispersity = 10**np.random.uniform(0, 3)
113    pars = dict(
114        #scale=1, background=0,
115        i_zero=1e7, # i_zero is a simple scale
116        rg=rg,
117        polydispersity=polydispersity,
118    )
119    return pars
120
121demo = dict(scale=1.0,
122            i_zero=70.0,
123            rg=75.0,
124            polydispersity=2.0,
125            background=0.0)
126
127# these unit test values taken from SasView 3.1.2
128tests = [
129    [{'scale': 1.0, 'i_zero': 70.0, 'rg': 75.0,
130      'polydispersity': 2.0, 'background': 0.0},
131     [0.0106939, 0.469418], [57.6405, 0.169016]],
132    ]
Note: See TracBrowser for help on using the repository browser.