source: sasmodels/sasmodels/models/two_lorentzian.py @ 46ed760

core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 46ed760 was 416609b, checked in by Paul Kienzle <pkienzle@…>, 8 years ago

use np.sqrt rather than math.sqrt for vector functions

  • Property mode set to 100644
File size: 5.5 KB
Line 
1r"""
2Definition
3----------
4
5The scattering intensity $I(q)$ is calculated as
6
7.. math::
8
9    I(q) = \frac{A}{1 +(Q\xi_1)^n} + \frac{C}{1 +(Q\xi_2)^m} + \text{B}
10
11where $A$ = Lorentzian scale factor #1, $C$ = Lorentzian scale #2,
12$\xi_1$ and $\xi_2$ are the corresponding correlation lengths, and $n$ and
13$m$ are the respective power law exponents (set $n = m = 2$ for
14Ornstein-Zernicke behaviour).
15
16For 2D data the scattering intensity is calculated in the same way as 1D,
17where the $q$ vector is defined as
18
19.. math::
20
21    q = \sqrt{q_x^2 + q_y^2}
22
23
24References
25----------
26
27None.
28
29**Author:** NIST IGOR/DANSE **on:** pre 2010
30
31**Last Modified by:** Piotr rozyczko **on:** January 29, 2016
32
33**Last Reviewed by:** Paul Butler **on:** March 21, 2016
34"""
35
36from numpy import inf, power, sqrt
37
38name = "two_lorentzian"
39title = "This model calculates an empirical functional form for SAS data \
40characterized by two Lorentzian-type functions."
41description = """I(q) = scale_1/(1.0 + pow((q*length_1),exponent_1))
42             + scale_2/(1.0 + pow((q*length_2),exponent_2) )+ background
43
44             scale_1    = Lorentzian term scaling #1
45             length_1   = Lorentzian screening length #1 [A]
46             exponent_1 = Lorentzian exponent #1
47             scale_2    = Lorentzian term scaling #2
48             length_2   = Lorentzian screening length #2 [A]
49             exponent_2 = Lorentzian exponent #2
50             background = Incoherent background
51        """
52category = "shape-independent"
53
54# pylint: disable=bad-whitespace, line-too-long
55#            ["name", "units", default, [lower, upper], "type", "description"],
56parameters = [["lorentz_scale_1",  "",     10.0, [-inf, inf], "", "First power law scale factor"],
57              ["lorentz_length_1", "Ang", 100.0, [-inf, inf], "", "First Lorentzian screening length"],
58              ["lorentz_exp_1",    "",      3.0, [-inf, inf], "", "First exponent of power law"],
59              ["lorentz_scale_2",  "",      1.0, [-inf, inf], "", "Second scale factor for broad Lorentzian peak"],
60              ["lorentz_length_2", "Ang",  10.0, [-inf, inf], "", "Second Lorentzian screening length"],
61              ["lorentz_exp_2",    "",      2.0, [-inf, inf], "", "Second exponent of power law"],
62             ]
63# pylint: enable=bad-whitespace, line-too-long
64
65
66def Iq(q,
67       lorentz_scale_1=10.0,
68       lorentz_length_1=100.0,
69       lorentz_exp_1=3.0,
70       lorentz_scale_2=1.0,
71       lorentz_length_2=10.0,
72       lorentz_exp_2=2.0):
73
74    """
75    :param q:                   Input q-value (float or [float, float])
76    :param lorentz_scale_1:     Second scale factor for broad Lorentzian peak
77    :param lorentz_length_1:    First Lorentzian screening length
78    :param lorentz_exp_1:       Exponent of the second Lorentz function
79    :param lorentz_scale_2:     Second scale factor for broad Lorentzian peak
80    :param lorentz_length_2:    Second Lorentzian screening length
81    :param lorentz_exp_2:       Exponent of the second Lorentz function
82    :return:                    Calculated intensity
83    """
84# pylint: disable=bad-whitespace
85    intensity  = lorentz_scale_1/(1.0 +
86                                  power(q*lorentz_length_1, lorentz_exp_1))
87    intensity += lorentz_scale_2/(1.0 +
88                                  power(q*lorentz_length_2, lorentz_exp_2))
89# pylint: enable=bad-whitespace
90
91    return intensity
92
93Iq.vectorized = True  # Iq accepts an array of q values
94
95
96def Iqxy(qx, qy, *args):
97    """
98    :param qx:   Input q_x-value
99    :param qy:   Input q_y-value
100    :param args: Remaining arguments
101    :return:     2D-Intensity
102    """
103
104    return Iq(sqrt(qx**2 + qy**2), *args)
105
106Iqxy.vectorized = True  # Iqxy accepts an array of qx, qy values
107
108
109demo = dict(scale=1, background=0.1,
110            lorentz_scale_1=10,
111            lorentz_length_1=100.0,
112            lorentz_exp_1=3.0,
113            lorentz_scale_2=1,
114            lorentz_length_2=10,
115            lorentz_exp_2=2.0)
116
117tests = [
118
119    # Accuracy tests based on content in test/utest_extra_models.py
120    [{'lorentz_scale_1':   10.0,
121      'lorentz_length_1': 100.0,
122      'lorentz_exp_1':      3.0,
123      'lorentz_scale_2':    1.0,
124      'lorentz_length_2':  10.0,
125      'lorentz_exp_2':      2.0,
126      'background':         0.1,
127     }, 0.001, 11.08991],
128
129    [{'lorentz_scale_1':   10.0,
130      'lorentz_length_1': 100.0,
131      'lorentz_exp_1':      3.0,
132      'lorentz_scale_2':    1.0,
133      'lorentz_length_2':  10.0,
134      'lorentz_exp_2':      2.0,
135      'background':         0.1,
136     }, 0.150141, 0.410245],
137
138    [{'lorentz_scale_1':   10.0,
139      'lorentz_length_1': 100.0,
140      'lorentz_exp_1':      3.0,
141      'lorentz_scale_2':    1.0,
142      'lorentz_length_2':  10.0,
143      'lorentz_exp_2':      2.0,
144      'background':         0.1,
145     }, 0.442528, 0.148699],
146
147    # Additional tests with larger range of parameters
148    [{'lorentz_scale_1':   10.0,
149      'lorentz_length_1': 100.0,
150      'lorentz_exp_1':      3.0,
151      'lorentz_scale_2':    1.0,
152      'lorentz_length_2':  10.0,
153      'lorentz_exp_2':      2.0,
154     }, 0.000332070182643, 10.9996228107],
155
156    [{'lorentz_scale_1':  0.0,
157      'lorentz_length_1': 0.0,
158      'lorentz_exp_1':    0.0,
159      'lorentz_scale_2':  0.0,
160      'lorentz_length_2': 0.0,
161      'lorentz_exp_2':    0.0,
162      'background':     100.0
163     }, 5.0, 100.0],
164
165    [{'lorentz_scale_1': 200.0,
166      'lorentz_length_1': 10.0,
167      'lorentz_exp_1':     0.1,
168      'lorentz_scale_2':   0.1,
169      'lorentz_length_2':  5.0,
170      'lorentz_exp_2':     2.0
171     }, 20000., 45.5659201896],
172    ]
Note: See TracBrowser for help on using the repository browser.