source: sasmodels/sasmodels/models/dab.py @ b6422c7

core_shell_microgelsmagnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since b6422c7 was b297ba9, checked in by Paul Kienzle <pkienzle@…>, 5 years ago

lint

  • Property mode set to 100644
File size: 2.1 KB
RevLine 
[80768fc]1r"""
[f224873]2Calculates the scattering from a randomly distributed, two-phase system based on
3the Debye-Anderson-Brumberger (DAB) model for such systems. The two-phase system
4is characterized by a single length scale, the correlation length, which is a
5measure of the average spacing between regions of phase 1 and phase 2. **The
6model also assumes smooth interfaces between the phases** and hence exhibits
[eb69cce]7Porod behavior $(I \sim q^{-4})$ at large $q$, $(qL \gg 1)$.
[80768fc]8
9The DAB model is ostensibly a development of the earlier Debye-Bueche model.
10
[eb69cce]11Definition
12----------
13
14.. math::
[80768fc]15
[eb69cce]16    I(q) = \text{scale}\cdot\frac{L^3}{(1 + (q\cdot L)^2)^2} + \text{background}
[80768fc]17
18where scale is
19
[eb69cce]20.. math:: \text{scale} = 8 \pi \phi (1-\phi) \Delta\rho^2
[80768fc]21
[eb69cce]22and the parameter $L$ is the correlation length.
[f224873]23
[eb69cce]24For 2D data the scattering intensity is calculated in the same way as 1D,
25where the $q$ vector is defined as
[f224873]26
27.. math:: q = \sqrt{q_x^2 + q_y^2}
28
29
[eb69cce]30References
31----------
[80768fc]32
[f224873]33P Debye, H R Anderson, H Brumberger, *Scattering by an Inhomogeneous Solid. II.
34The Correlation Function and its Application*, *J. Appl. Phys.*, 28(6) (1957) 679
[80768fc]35
[f224873]36P Debye, A M Bueche, *Scattering by an Inhomogeneous Solid*, *J. Appl. Phys.*,
3720 (1949) 518
[80768fc]38
39*2013/09/09 - Description reviewed by King, S and Parker, P.*
40"""
41
[2d81cfe]42import numpy as np
[80768fc]43from numpy import inf
44
45name = "dab"
46title = "DAB (Debye Anderson Brumberger) Model"
47description = """\
48
[f224873]49F(q)= scale * L^3/(1 + (q*L)^2)^2
[80768fc]50
51L: the correlation length
52
53"""
[a5d0d00]54category = "shape-independent"
[80768fc]55
[3e428ec]56#             ["name", "units", default, [lower, upper], "type", "description"],
[a807206]57parameters = [["cor_length", "Ang", 50.0, [0, inf], "", "correlation length"],
[3e428ec]58             ]
[80768fc]59
60Iq = """
[4962519]61    double numerator   = cube(cor_length);
62    double denominator = square(1 + square(q*cor_length));
[404ebbd]63
[80768fc]64    return numerator / denominator ;
65    """
66
[404ebbd]67def random():
[b297ba9]68    """Return a random parameter set for the model."""
[404ebbd]69    pars = dict(
70        scale=10**np.random.uniform(1, 4),
71        cor_length=10**np.random.uniform(0.3, 3),
72        #background = 0,
73    )
74    pars['scale'] /= pars['cor_length']**3
75    return pars
76
[a807206]77demo = dict(scale=1, background=0, cor_length=50)
Note: See TracBrowser for help on using the repository browser.