source: sasmodels/sasmodels/models/line.py @ 3543141

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

remove oldname/oldpars from new models

  • Property mode set to 100644
File size: 2.5 KB
Line 
1r"""
2This model calculates intensity using simple linear function
3
4Definition
5----------
6
7The scattering intensity $I(q)$ is calculated as
8
9.. math::
10
11    I(q) = A + B \cdot q
12
13.. note::
14    For 2D plots intensity has different definition than other shape independent models
15
16.. math::
17    I(q) = I(qx) \cdot I(qy)
18
19References
20----------
21
22None.
23
24"""
25from numpy import inf
26
27name = "line"
28title = "Line model"
29description = """\
30      I(q) = A + B*q
31
32      List of default parameters:
33      A = intercept
34      B = slope
35      """
36category = "shape-independent"
37
38# pylint: disable=bad-whitespace, line-too-long
39#             ["name", "units", default, [lower, upper], "type", "description"],
40parameters = [["intercept", "1/cm",   1.0, [-inf, inf], "", "intercept in linear model"],
41              ["slope",     "Ang/cm", 1.0, [-inf, inf], "", "slope in linear model"],
42             ]
43# pylint: enable=bad-whitespace, line-too-long
44
45def Iq(q, intercept, slope):
46    """
47    :param q:           Input q-value
48    :param intercept:   Intrecept in linear model
49    :param slope:       Slope in linear model
50    :return:            Calculated Intensity
51    """
52    inten = intercept + slope*q
53    # TODO: In SasView code additional formula for list has been specified.
54    # if inten(x) = intercept + slope*x:
55    # then if q is a list, Iq=inten(x[0]*math.cos(x[1]))*inten(x[0]*math.sin(x[1]))
56    return inten
57
58Iq.vectorized = True # Iq accepts an array of q values
59
60def Iqxy(qx, qy, *args):
61    """
62    :param qx:   Input q_x-value
63    :param qy:   Input q_y-value
64    :param args: Remaining arguments
65    :return:     2D-Intensity
66    """
67    # TODO: SasView documention lists 2D intensity as Iq(qx)*Iq(qy) but code says:
68    # return self._line(x[1])
69    return Iq(qx, *args)*Iq(qy, *args)
70
71Iqxy.vectorized = True  # Iqxy accepts an array of qx, qy values
72
73demo = dict(scale=1.0, background=0, intercept=1.0, slope=1.0)
74
75tests = [
76
77    [{'intercept':   1.0,
78      'slope': 1.0,
79     }, 1.0, 2.001],
80
81    [{'intercept':   1.0,
82      'slope': 1.0,
83     }, 0.0, 1.001],
84
85    [{'intercept':   1.0,
86      'slope': 1.0,
87     }, 0.4, 1.401],
88
89    [{'intercept':   1.0,
90      'slope': 1.0,
91     }, 1.3, 2.301],
92
93    [{'intercept':   1.0,
94      'slope': 1.0,
95     }, 0.5, 1.501],
96
97    [{'intercept':   1.0,
98      'slope': 1.0,
99     }, [0.4, 0.5], [1.401, 1.501]],
100
101    [{'intercept':   1.0,
102      'slope': 1.0,
103      'background': 0.0,
104     }, (1.3, 1.57), 5.911],
105]
Note: See TracBrowser for help on using the repository browser.