source: sasmodels/sasmodels/models/fuzzy_sphere.py @ 0cc31e1

core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 0cc31e1 was 0cc31e1, checked in by richardh, 8 years ago

more docs & sld name changes

  • Property mode set to 100644
File size: 4.2 KB
Line 
1r"""
2For information about polarised and magnetic scattering, click here_.
3
4.. _here: polar_mag_help.html
5
6Definition
7----------
8
9The scattering intensity *I(q)* is calculated as:
10
11.. math::
12    I(q) = \frac{scale}{V}(\Delta \rho)^2 A^2(q) S(q) +\text{background}
13
14
15where the amplitude *A(q)* is given as the typical sphere scattering convoluted
16with a Gaussian to get a gradual drop-off in the scattering length density:
17
18.. math::
19
20    A(q) = \frac{3\left[\sin(qR) - qR \cos(qR)\right]}{(qR)^3}
21           \exp\left(\frac{-(\sigma_{fuzzy}q)^2}{2}\right)
22
23Here *|A(q)|*:sup:`2`\  is the form factor, *P(q)*. The scale is equivalent to the
24volume fraction of spheres, each of volume, *V*\. Contrast (|drho|) is the
25difference of scattering length densities of the sphere and the surrounding
26solvent.
27
28Poly-dispersion in radius and in fuzziness is provided for, though the fuzziness
29must be kept much smaller than the sphere radius for meaningful results.
30
31
32
33From the reference:
34
35  The "fuzziness" of the interface is defined by the parameter
36  |sigma| :sub:`fuzzy`\ . The particle radius *R* represents the radius of the
37  particle where the scattering length density profile decreased to 1/2 of the
38  core density. The |sigma| :sub:`fuzzy`\ is the width of the smeared particle
39  surface; i.e., the standard deviation from the average height of the fuzzy
40  interface. The inner regions of the microgel that display a higher density
41  are described by the radial box profile extending to a radius of
42  approximately *Rbox* ~ *R* - 2\ |sigma|\ . The profile approaches zero as
43  *Rsans* ~ *R* + 2\ |sigma|\ .
44
45For 2D data: The 2D scattering intensity is calculated in the same way as 1D,
46where the *q* vector is defined as
47
48.. math::
49
50    q = \sqrt{{q_x}^2 + {q_y}^2}
51
52
53References
54----------
55
56M Stieger, J. S Pedersen, P Lindner, W Richtering, *Langmuir*,
5720 (2004) 7283-7292
58"""
59
60from numpy import inf
61
62name = "fuzzy_sphere"
63title = "Scattering from spherical particles with a fuzzy surface."
64description = """\
65scale: scale factor times volume fraction,
66or just volume fraction for absolute scale data
67radius: radius of the solid sphere
68fuzziness = the standard deviation of the fuzzy interfacial
69thickness (ie., so-called interfacial roughness)
70sld: the SLD of the sphere
71solvend_sld: the SLD of the solvent
72background: incoherent background
73Note: By definition, this function works only when fuzziness << radius.
74"""
75category = "shape:sphere"
76
77# pylint: disable=bad-whitespace,line-too-long
78# ["name", "units", default, [lower, upper], "type","description"],
79parameters = [["sld",         "1e-6/Ang^2",  1, [-inf, inf], "",       "Particle scattering length density"],
80              ["sld_solvent", "1e-6/Ang^2",  3, [-inf, inf], "",       "Solvent scattering length density"],
81              ["radius",      "Ang",        60, [0, inf],    "volume", "Sphere radius"],
82              ["fuzziness",   "Ang",        10, [0, inf],    "",       "std deviation of Gaussian convolution for interface (must be << radius)"],
83             ]
84# pylint: enable=bad-whitespace,line-too-long
85
86source = ["lib/sph_j1c.c"]
87
88# No volume normalization despite having a volume parameter
89# This should perhaps be volume normalized?
90form_volume = """
91    return 1.333333333333333*M_PI*radius*radius*radius;
92    """
93
94Iq = """
95    const double qr = q*radius;
96    const double bes = sph_j1c(qr);
97    const double qf = q*fuzziness;
98    const double fq = bes * (sld - sld_solvent) * form_volume(radius) * exp(-0.5*qf*qf);
99    return 1.0e-4*fq*fq;
100    """
101
102Iqxy = """
103    // never called since no orientation or magnetic parameters.
104    //return -1.0;
105    return Iq(sqrt(qx*qx + qy*qy), sld, sld_solvent, radius, fuzziness);
106    """
107
108def ER(radius):
109    """
110    Return radius
111    """
112    return radius
113
114# VR defaults to 1.0
115
116demo = dict(scale=1, background=0.001,
117            sld=1, sld_solvent=3,
118            radius=60,
119            fuzziness=10,
120            radius_pd=.2, radius_pd_n=45,
121            fuzziness_pd=.2, fuzziness_pd_n=0)
122
123oldname = "FuzzySphereModel"
124oldpars = dict(sld='sldSph', sld_solvent='sldSolv', radius='radius', fuzziness='fuzziness')
125
126
127tests = [
128    # Accuracy tests based on content in test/utest_models_new1_3.py
129    #[{'background': 0.001}, 1.0, 0.001],
130
131    [{}, 0.00301005, 359.2315],
132
133    ]
Note: See TracBrowser for help on using the repository browser.