source: sasmodels/sasmodels/models/teubner_strey.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: 3.7 KB
Line 
1r"""
2Definition
3----------
4
5This model calculates the scattered intensity of a two-component system
6using the Teubner-Strey model. Unlike :ref:`dab` this function generates
7a peak. A two-phase material can be characterised by two length scales -
8a correlation length and a domain size (periodicity).
9
10The original paper by Teubner and Strey defined the function as:
11
12.. math::
13
14    I(q) \propto \frac{1}{a_2 + c_1 q^2 + c_2 q^4} + \text{background}
15
16where the parameters $a_2$, $c_1$ and $c_2$ are defined in terms of the
17periodicity, $d$, and correlation length $\xi$ as:
18
19.. math::
20
21    a_2 &= \biggl[1+\bigl(\frac{2\pi\xi}{d}\bigr)^2\biggr]^2\\
22    c_1 &= -2\xi^2\bigl(\frac{2\pi\xi}{d}\bigr)^2+2\xi^2\\
23    c_2 &= \xi^4
24
25and thus, the periodicity, $d$ is given by
26
27.. math::
28
29    d = 2\pi\left[\frac12\left(\frac{a_2}{c_2}\right)^{1/2}
30                  - \frac14\frac{c_1}{c_2}\right]^{-1/2}
31
32and the correlation length, $\xi$, is given by
33
34.. math::
35
36    \xi = \left[\frac12\left(\frac{a_2}{c_2}\right)^{1/2}
37                  + \frac14\frac{c_1}{c_2}\right]^{-1/2}
38
39Here the model is parameterised in terms of  $d$ and $\xi$ and with an explicit
40volume fraction for one phase, $\phi_a$, and contrast,
41$\delta\rho^2 = (\rho_a - \rho_b)^2$ :
42
43.. math::
44
45    I(q) = \frac{8\pi\phi_a(1-\phi_a)(\Delta\rho)^2c_2/\xi}
46        {a_2 + c_1q^2 + c_2q^4}
47
48where :math:`8\pi\phi_a(1-\phi_a)(\Delta\rho)^2c_2/\xi` is the constant of
49proportionality from the first equation above.
50
51In the case of a microemulsion, $a_2 > 0$, $c_1 < 0$, and $c_2 >0$.
52
53For 2D data, scattering intensity is calculated in the same way as 1D,
54where the $q$ vector is defined as
55
56.. math::
57
58    q = \sqrt{q_x^2 + q_y^2}
59
60References
61----------
62
63.. [#] M Teubner, R Strey, *J. Chem. Phys.*, 87 (1987) 3195
64.. [#] K V Schubert, R Strey, S R Kline and E W Kaler, *J. Chem. Phys.*, 101 (1994) 5343
65.. [#] H Endo, M Mihailescu, M. Monkenbusch, J Allgaier, G Gompper, D Richter, B Jakobs, T Sottmann, R Strey, and I Grillo, *J. Chem. Phys.*, 115 (2001), 580
66
67Authorship and Verification
68----------------------------
69
70* **Author:**
71* **Last Modified by:**
72* **Last Reviewed by:**
73"""
74from __future__ import division
75
76import numpy as np
77from numpy import inf, pi
78
79name = "teubner_strey"
80title = "Teubner-Strey model of microemulsions"
81description = """\
82    Calculates scattering according to the Teubner-Strey model
83"""
84category = "shape-independent"
85
86#   ["name", "units", default, [lower, upper], "type","description"],
87parameters = [
88    ["volfraction_a", "", 0.5, [0, 1.0], "", "Volume fraction of phase a"],
89    ["sld_a", "1e-6/Ang^2", 0.3, [-inf, inf], "", "SLD of phase a"],
90    ["sld_b", "1e-6/Ang^2", 6.3, [-inf, inf], "", "SLD of phase b"],
91    ["d", "Ang", 100.0, [0, inf], "", "Domain size (periodicity)"],
92    ["xi", "Ang", 30.0, [0, inf], "", "Correlation length"],
93    ]
94
95def Iq(q, volfraction_a, sld_a, sld_b, d, xi):
96    """SAS form"""
97    drho = sld_a - sld_b
98    k = 2.0*pi*xi/d
99    a2 = (1.0 + k**2)**2
100    c1 = 2.0*xi**2 * (1.0 - k**2)
101    c2 = xi**4
102    prefactor = 8.0*pi * volfraction_a*(1.0 - volfraction_a) * drho**2 * c2/xi
103    return 1.0e-4*prefactor / np.polyval([c2, c1, a2], q**2)
104
105Iq.vectorized = True  # Iq accepts an array of q values
106
107def random():
108    """Return a random parameter set for the model."""
109    d = 10**np.random.uniform(1, 4)
110    xi = 10**np.random.uniform(-0.3, 2)*d
111    pars = dict(
112        #background=0,
113        scale=100,
114        volfraction_a=10**np.random.uniform(-3, 0),
115        sld_a=np.random.uniform(-0.5, 12),
116        sld_b=np.random.uniform(-0.5, 12),
117        d=d,
118        xi=xi,
119    )
120    return pars
121
122demo = dict(scale=1, background=0, volfraction_a=0.5,
123            sld_a=0.3, sld_b=6.3,
124            d=100.0, xi=30.0)
125tests = [[{}, 0.06, 41.5918888453]]
Note: See TracBrowser for help on using the repository browser.