source: sasmodels/sasmodels/models/gauss_lorentz_gel.py @ b297ba9

core_shell_microgelsmagnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since b297ba9 was b297ba9, checked in by Paul Kienzle <pkienzle@…>, 5 years ago

lint

  • Property mode set to 100644
File size: 5.0 KB
RevLine 
[29da213]1r"""
2This model calculates the scattering from a gel structure,
3but typically a physical rather than chemical network.
[b8954d7]4It is modeled as a sum of a low-q exponential decay (which happens to
[48462b0]5give a functional form similar to Guinier scattering, so interpret with
[b8954d7]6care) plus a Lorentzian at higher-q values. See also the gel_fit model.
[29da213]7
8Definition
9----------
10
[40a87fa]11The scattering intensity $I(q)$ is calculated as (Eqn. 5 from the reference)
[29da213]12
[40a87fa]13.. math:: I(q) = I_G(0) \exp(-q^2\Xi ^2/2) + I_L(0)/(1+q^2\xi^2)
[29da213]14
[40a87fa]15$\Xi$ is the length scale of the static correlations in the gel, which can
16be attributed to the "frozen-in" crosslinks. $\xi$ is the dynamic correlation
17length, which can be attributed to the fluctuating polymer chains between
18crosslinks. $I_G(0)$ and $I_L(0)$ are the scaling factors for each of these
19structures. Think carefully about how these map to your particular system!
[29da213]20
21.. note::
22    The peaked structure at higher $q$ values (Figure 2 from the reference)
23    is not reproduced by the model. Peaks can be introduced into the model
[40a87fa]24    by summing this model with the :ref:`gaussian-peak` model.
[29da213]25
26For 2D data the scattering intensity is calculated in the same way as 1D,
27where the $q$ vector is defined as
28
[40a87fa]29.. math:: q = \sqrt{q_x^2 + q_y^2}
[29da213]30
31References
32----------
33
[168052c]34G Evmenenko, E Theunissen, K Mortensen, H Reynaers, *Polymer*,
3542 (2001) 2907-2913
[29da213]36"""
37
[2d81cfe]38import numpy as np
[2c74c11]39from numpy import inf, exp
[29da213]40
41name = "gauss_lorentz_gel"
42title = "Gauss Lorentz Gel model of scattering from a gel structure"
43description = """
44            Class that evaluates a GaussLorentzGel model.
45
46            I(q) = scale_g*exp(- q^2*Z^2 / 2)+scale_l/(1+q^2*z^2)
47                    + background
48            List of default parameters:
49                scale_g = Gauss scale factor
50                Z = Static correlation length
51                scale_l = Lorentzian scale factor
52                z = Dynamic correlation length
53                background = Incoherent background
54            """
55category = "shape-independent"
[168052c]56# pylint: disable=bad-whitespace, line-too-long
[29da213]57#            ["name", "units", default, [lower, upper], "type", "description"],
[a807206]58parameters = [["gauss_scale",   "",    100.0,  [-inf, inf], "", "Gauss scale factor"],
59              ["cor_length_static",    "Ang", 100.0,  [0, inf],    "", "Static correlation length"],
60              ["lorentz_scale", "",     50.0,  [-inf, inf], "", "Lorentzian scale factor"],
61              ["cor_length_dynamic",   "Ang",  20.0,  [0, inf],    "", "Dynamic correlation length"],
[168052c]62             ]
63# pylint: enable=bad-whitespace, line-too-long
[29da213]64
65def Iq(q,
[a807206]66       gauss_scale=100.0,
67       cor_length_static=100.0,
68       lorentz_scale=50.0,
69       cor_length_dynamic=20.0):
[168052c]70    """
71
72    :param q:                    Input q-value
[a807206]73    :param gauss_scale:   Gauss scale factor
74    :param cor_length_static:    Static correlation length
75    :param lorentz_scale: Lorentzian scale factor
76    :param cor_length_dynamic:   Dynamic correlation length
[168052c]77    :return:                     1-D intensity
78    """
79
[a807206]80    term1 = gauss_scale *\
81            exp(-1.0*q*q*cor_length_static*cor_length_static/2.0)
82    term2 = lorentz_scale /\
83            (1.0+(q*cor_length_dynamic)*(q*cor_length_dynamic))
[168052c]84
85    return term1 + term2
[29da213]86
87Iq.vectorized = True  # Iq accepts an array of q values
88
89
[48462b0]90def random():
[b297ba9]91    """Return a random parameter set for the model."""
[48462b0]92    gauss_scale = 10**np.random.uniform(1, 3)
93    lorentz_scale = 10**np.random.uniform(1, 3)
94    cor_length_static = 10**np.random.uniform(0, 3)
95    cor_length_dynamic = 10**np.random.uniform(0, 3)
96    pars = dict(
97        #background=0,
98        scale=1,
99        gauss_scale=gauss_scale,
100        lorentz_scale=lorentz_scale,
101        cor_length_static=cor_length_static,
102        cor_length_dynamic=cor_length_dynamic,
103    )
104    return pars
105
106
[29da213]107demo = dict(scale=1, background=0.1,
[a807206]108            gauss_scale=100.0,
109            cor_length_static=100.0,
110            lorentz_scale=50.0,
111            cor_length_dynamic=20.0)
[29da213]112
[07a6700]113tests = [
[168052c]114
115    # Accuracy tests based on content in test/utest_extra_models.py
[a807206]116    [{'gauss_scale':  100.0,
117      'cor_length_static':   100.0,
118      'lorentz_scale': 50.0,
119      'cor_length_dynamic':   20.0,
[6dd90c1]120     }, 0.001, 149.482],
[168052c]121
[a807206]122    [{'gauss_scale':  100.0,
123      'cor_length_static':   100.0,
124      'lorentz_scale': 50.0,
125      'cor_length_dynamic':   20.0,
[6dd90c1]126     }, 0.105363, 9.1913],
[168052c]127
[a807206]128    [{'gauss_scale':  100.0,
129      'cor_length_static':   100.0,
130      'lorentz_scale': 50.0,
131      'cor_length_dynamic':   20.0,
[6dd90c1]132     }, 0.441623, 0.633811],
[168052c]133
134    # Additional tests with larger range of parameters
[a807206]135    [{'gauss_scale':  10.0,
136      'cor_length_static':  100.0,
137      'lorentz_scale': 3.0,
138      'cor_length_dynamic':   1.0,
[6dd90c1]139     }, 0.1, 2.9712970297],
[168052c]140
[a807206]141    [{'gauss_scale':  10.0,
142      'cor_length_static':  100.0,
143      'lorentz_scale': 3.0,
144      'cor_length_dynamic':   1.0,
[168052c]145      'background':         100.0
[6dd90c1]146     }, 5.0, 100.116384615],
[168052c]147
[a807206]148    [{'gauss_scale':  10.0,
149      'cor_length_static':  100.0,
150      'lorentz_scale': 3.0,
151      'cor_length_dynamic':   1.0,
[6dd90c1]152      'background':           0.0,
[168052c]153     }, 200., 7.49981250469e-05],
154    ]
Note: See TracBrowser for help on using the repository browser.