source: sasmodels/sasmodels/models/porod.py @ f64b154

Last change on this file since f64b154 was c1e44e5, checked in by Paul Kienzle <pkienzle@…>, 5 years ago

Add local link to source files. Refs #1263.

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[19b6d28]1r"""
2This model fits the Porod function
3
[40a87fa]4.. math:: I(q) = C/q^4
[19b6d28]5
6to the data directly without any need for linearisation (cf. Log I(q) vs Log q).
7
[40a87fa]8Here $C = 2\pi (\Delta\rho)^2 S_v$ is the scale factor where $S_v$ is
9the specific surface area (ie, surface area / volume) of the sample, and
10$\Delta\rho$ is the contrast factor.
[19b6d28]11
[cc3fac6]12For 2D data: The 2D scattering intensity is calculated in the same way as 1D,
[16bb433]13where the q vector is defined as
[19b6d28]14
[40a87fa]15.. math:: q = \sqrt{q_x^2+q_y^2}
[19b6d28]16
[2f63032]17References
18----------
19
[0507e09]20.. [#] G Porod. *Kolloid Zeit*. 124 (1951) 83
21.. [#] L A Feigin, D I Svergun, G W Taylor. *Structure Analysis by Small-Angle X-ray and Neutron Scattering*. Springer. (1987)
[40a87fa]22
[0507e09]23Authorship and Verification
24----------------------------
25
[c1e44e5]26* **Author:**
27* **Last Modified by:**
28* **Last Reviewed by:**
[19b6d28]29"""
30
[2d81cfe]31import numpy as np
32from numpy import inf, errstate
[19b6d28]33
34name = "porod"
35title = "Porod function"
36description = """\
37          I(q) = scale/q^4 + background
38"""
39
40category = "shape-independent"
41
42parameters = []
43
44def Iq(q):
45    """
46    @param q: Input q-value
47    """
[82923a6]48    with errstate(divide='ignore'):
[4962519]49        return q**-4
[19b6d28]50
51Iq.vectorized = True  # Iq accepts an array of q values
52
[232bb12]53def random():
[b297ba9]54    """Return a random parameter set for the model."""
[232bb12]55    sld, solvent = np.random.uniform(-0.5, 12, size=2)
56    radius = 10**np.random.uniform(1, 4.7)
57    Vf = 10**np.random.uniform(-3, -1)
58    scale = 1e-4 * Vf * 2*np.pi*(sld-solvent)**2/(3*radius)
59    pars = dict(
60        scale=scale,
61    )
62    return pars
63
[19b6d28]64demo = dict(scale=1.5, background=0.5)
65
[82923a6]66tests = [
67    [{'scale': 0.00001, 'background':0.01}, 0.04, 3.916250],
68    [{}, 0.0, inf],
69]
Note: See TracBrowser for help on using the repository browser.