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

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

implicit Iqxy; fix divide by 0 for q=0

  • Property mode set to 100644
File size: 1.2 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 power, inf, errstate
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    with errstate(divide='ignore'):
45        return power(q, -4)
46
47Iq.vectorized = True  # Iq accepts an array of q values
48
49demo = dict(scale=1.5, background=0.5)
50
51tests = [
52    [{'scale': 0.00001, 'background':0.01}, 0.04, 3.916250],
53    [{}, 0.0, inf],
54]
Note: See TracBrowser for help on using the repository browser.