source: sasmodels/sasmodels/models/guinier.py @ 4476951

core_shell_microgelsmagnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 4476951 was 4476951, checked in by Torin Cooper-Bennun <torin.cooper-bennun@…>, 6 years ago

applied fix for ticket 1112 (allow negative rg)

  • Property mode set to 100644
File size: 2.6 KB
Line 
1r"""
2Definition
3----------
4
5This model fits the Guinier function
6
7.. math::
8
9    I(q) = \text{scale} \cdot \exp{\left[ \frac{-Q^2 R_g^2 }{3} \right]}
10            + \text{background}
11
12to the data directly without any need for linearisation (*cf*. the usual
13plot of $\ln I(q)$ vs $q^2$\ ). Note that you may have to restrict the data
14range to include small q only, where the Guinier approximation actually
15applies. See also the guinier_porod model.
16
17For 2D data the scattering intensity is calculated in the same way as 1D,
18where the $q$ vector is defined as
19
20.. math:: q = \sqrt{q_x^2 + q_y^2}
21
22Note that $R_g^2$ may be negative, which happens when a form factor $P(Q)$ is
23increasing with $Q$ rather than decreasing. This can occur for core or shell
24particles, hollow particles, or for composite particles with domains of
25different SLDs in a solvent with an SLD close to the average match point.
26(Alternatively, it might be regarded as there being an internal inter-domain
27"structure factor" within a single particle which gives rise to a peak in the
28scattering).
29
30To specify a negative value of $R_g^2$ in SasView, simply give $R_g$ a negative
31value ($R_g^2$ will be evaluated as $R_g |R_g|$).
32
33Note that the physical radius of gyration, of the exterior of the particle,
34will still be large and positive. It is only the apparent size from the small
35$Q$ data that will give a small or negative value of $R_g^2$.
36
37References
38----------
39
40A Guinier and G Fournet, *Small-Angle Scattering of X-Rays*,
41John Wiley & Sons, New York (1955)
42"""
43
44import numpy as np
45from numpy import inf
46
47name = "guinier"
48title = ""
49description = """
50 I(q) = scale.exp ( - rg^2 q^2 / 3.0 )
51
52    List of default parameters:
53    scale = scale
54    rg = Radius of gyration
55"""
56category = "shape-independent"
57
58#             ["name", "units", default, [lower, upper], "type","description"],
59parameters = [["rg", "Ang", 60.0, [-inf, inf], "", "Radius of Gyration"]]
60
61Iq = """
62    double exponent = abs(rg)*rg*q*q/3.0;
63    double value = exp(-exponent);
64    return value;
65"""
66
67def random():
68    scale = 10**np.random.uniform(1, 4)
69    # Note: compare.py has Rg cutoff of 1e-30 at q=1 for guinier, so use that
70    # log_10 Ae^(-(q Rg)^2/3) = log_10(A) - (q Rg)^2/ (3 ln 10) > -30
71    #   => log_10(A) > Rg^2/(3 ln 10) - 30
72    q_max = 1.0
73    rg_max = np.sqrt(90*np.log(10) + 3*np.log(scale))/q_max
74    rg = 10**np.random.uniform(0, np.log10(rg_max))
75    pars = dict(
76        #background=0,
77        scale=scale,
78        rg=rg,
79    )
80    return pars
81
82# parameters for demo
83demo = dict(scale=1.0, rg=60.0)
84
85# parameters for unit tests
86tests = [[{'rg' : 31.5}, 0.005, 0.992756]]
Note: See TracBrowser for help on using the repository browser.