source: sasmodels/sasmodels/models/porod.py @ 2f63032

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

Changes to improve doc build

  • Property mode set to 100644
File size: 1.4 KB
Line 
1r"""
2This model fits the Porod function
3
4.. math::
5
6    I(q) = C/q^4
7    \\
8    C = 2\pi (\Delta\rho)^2 S_v
9
10to the data directly without any need for linearisation (cf. Log I(q) vs Log q).
11
12Here $C$ is the scale factor and $S_v$ is the specific surface area (ie, surface area / volume)
13of the sample, and $\Delta\rho$ is the contrast factor.
14
15For 2D data: The 2D scattering intensity is calculated in the same way as 1D,
16where the q vector is defined as
17
18.. math::
19    q = \sqrt{q_x^2+q_y^2}
20
21References
22----------
23
24G Porod. *Kolloid Zeit*. 124 (1951) 83.
25L A Feigin, D I Svergun, G W Taylor. *Structure Analysis by Small-Angle X-ray and Neutron Scattering*. Springer. (1987)
26"""
27
28from numpy import sqrt, power
29
30name = "porod"
31title = "Porod function"
32description = """\
33          I(q) = scale/q^4 + background
34"""
35
36category = "shape-independent"
37
38parameters = []
39
40def Iq(q):
41    """
42    @param q: Input q-value
43    """
44    return 1.0/power(q, 4)
45
46Iq.vectorized = True  # Iq accepts an array of q values
47
48def Iqxy(qx, qy, *args):
49    """
50    @param qx:   Input q_x-value
51    @param qy:   Input q_y-value
52    @param args: Remaining arguments
53    """
54    return Iq(sqrt(qx ** 2 + qy ** 2), *args)
55
56Iqxy.vectorized = True # Iqxy accepts an array of qx, qy values
57
58demo = dict(scale=1.5, background=0.5)
59
60oldname = "PorodModel"
61oldpars = dict(scale='scale', background='background')
62
63tests = [[{'scale': 0.00001, 'background':0.01}, 0.04, 3.916250]]
Note: See TracBrowser for help on using the repository browser.