source: sasmodels/_sources/model/dab.txt @ 68532f3

gh-pages
Last change on this file since 68532f3 was 68532f3, checked in by ajj, 8 years ago

Adding docs

  • Property mode set to 100644
File size: 2.2 KB
Line 
1.. _dab:
2
3Dab
4=======================================================
5
6DAB (Debye Anderson Brumberger) Model
7
8========== ================== ======= =============
9Parameter  Description        Units   Default value
10========== ================== ======= =============
11scale      Source intensity   None                1
12background Source background  |cm^-1|             0
13length     correlation length |Ang|              50
14========== ================== ======= =============
15
16The returned value is scaled to units of |cm^-1|.
17
18
19
20Scattering model class for the DAB (Debye Anderson Brumberger) Model
21
22Definition
23----------
24
25Calculates the scattering from a randomly distributed, two-phase system based on
26the Debye-Anderson-Brumberger (DAB) model for such systems. The two-phase system
27is characterized by a single length scale, the correlation length, which is a
28measure of the average spacing between regions of phase 1 and phase 2. **The
29model also assumes smooth interfaces between the phases** and hence exhibits
30Porod behavior (I ~ *q*\ :sup:`-4`) at large *q* (*QL* >> 1).
31
32The DAB model is ostensibly a development of the earlier Debye-Bueche model.
33
34*Definition*
35
36.. math:: I(q) = \text{scale}\cdot\frac{L^3}{(1 + (q \cdot L)^2)^2} + \text{background}
37
38where scale is
39
40.. math:: \text{scale} = 8 \pi \phi (1-\phi)(\Delta \rho)^2
41
42and the parameter *L* is the correlation length.
43
44For 2D data: The 2D scattering intensity is calculated in the same way as 1D,
45where the *q* vector is defined as
46
47.. math:: q = \sqrt{q_x^2 + q_y^2}
48
49==============  ========  =============
50Parameter name  Units     Default value
51==============  ========  =============
52scale           None      1.0
53corr length L   |Ang|     50.0
54background      |cm^-1|   0.0
55==============  ========  =============
56
57
58.. figure:: img/dab_1d.jpg
59
60   1D plot using the default values (w/200 data point).
61
62
63Reference
64---------
65
66P Debye, H R Anderson, H Brumberger, *Scattering by an Inhomogeneous Solid. II.
67The Correlation Function and its Application*, *J. Appl. Phys.*, 28(6) (1957) 679
68
69P Debye, A M Bueche, *Scattering by an Inhomogeneous Solid*, *J. Appl. Phys.*,
7020 (1949) 518
71
72*2013/09/09 - Description reviewed by King, S and Parker, P.*
73
74
Note: See TracBrowser for help on using the repository browser.