source: sasmodels/sasmodels/models/surface_fractal.py @ da84551

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

Converted SurfaceFractal? model

  • Property mode set to 100644
File size: 3.1 KB
Line 
1r"""
2This model calculates the scattering from fractal-like aggregates based
3on the Mildner reference.
4
5Definition
6----------
7
8The scattering intensity $I(q)$ is calculated as
9
10.. math::
11
12    I(q) = scale \times P(q)S(q) + background
13
14.. math::
15
16    P(q) = F(qR)^2
17
18.. math::
19
20    F(x) = \frac{3\left[sin(x)-xcos(x)\right]}{x^3}
21
22.. math::
23
24    S(q) = \frac{\Gamma(5-D_S)\zeta^{5-D_S}}{\left[1+(q\zeta)^2\right]^{(5-D_S)/2}}
25    \frac{sin\left[(D_S - 5) tan^{-1}(q\zeta) \right]}{q}
26
27.. math::
28
29    scale = scale\_factor \times NV^2(\rho_{particle} - \rho_{solvent})^2
30
31.. math::
32
33    V = \frac{4}{3}\pi R^3
34
35where $R$ is the radius of the building block, $D_S$ is the **surface** fractal dimension,
36$\zeta$ is the cut-off length, $\rho_{solvent}$ is the scattering length density of the solvent,
37and $\rho_{particle}$ is the scattering length density of particles.
38
39.. note::
40
41The surface fractal dimension $D_s$ is only valid if $1<surface\_dim<3$.
42It is also only valid over a limited $q$ range (see the reference for details)
43
44
45.. figure:: img/surface_fractal_1d.jpg
46
47    1D plot using the default values.
48
49Reference
50---------
51
52D Mildner and P Hall, *J. Phys. D: Appl. Phys.*, 19 (1986) 1535-1545
53
54"""
55
56from numpy import inf
57
58name = "surface_fractal"
59title = "Fractal-like aggregates based on the Mildner reference"
60description = """\
61    [The scattering intensity  I(x) = scale*P(x)*S(x) + background, where
62        scale = scale_factor  * V * delta^(2)
63        p(x) = F(x*radius)^(2)
64        F(x) = 3*[sin(x)-x cos(x)]/x**3
65        S(x) = [(gamma(5-Ds)*colength^(5-Ds)*[1+(x^2*colength^2)]^((Ds-5)/2)
66             * sin[(Ds-5)*arctan(x*colength)])/x]
67        where
68        delta        =  sldParticle -sldSolv.
69        radius       =  Particle radius
70        surface_dim  =  Surface fractal dimension (Ds)
71        co_length    =  Cut-off length
72        background   =  background
73
74        Ref.   :Mildner, Hall,J Phys D Appl Phys(1986), 19, 1535-1545
75        Note I : This model is valid for 1<surface_dim<3 with limited q range.
76        Note II: This model is not in absolute scale.
77"""
78category = "shape-independent"
79
80#             ["name", "units", default, [lower, upper], "type","description"],
81parameters = [["radius",        "Ang", 10.0, [0, inf],   "", "Particle radius"],
82              ["surface_dim",   "",    2.0,  [0, inf],   "", "Surface fractal dimension"],
83              ["cutoff_length", "Ang", 500., [0.0, inf], "",  "Cut-off Length"],
84              ]
85
86
87source = ["surface_fractal.c"]
88
89demo = dict(scale=1, background=0,
90            radius=10, surface_dim=2.0, cutoff_length=500)
91
92oldname = 'SurfaceFractalModel'
93oldpars = dict(radius='radius',
94               surface_dim='surface_dim',
95               cutoff_length='co_length')
96
97tests = [[{'radius': 1.0, 'surface_dim': 1.0, 'cutoff_length': 10.0,
98           }, 0.332070182643, 1125.00321004],
99
100         [{'radius': 3.5, 'surface_dim': 0.1, 'cutoff_length': 30.0,
101           'background': 0.01,
102           }, 5.0, 0.00999998891322],
103
104         [{'radius': 3.0, 'surface_dim': 1.0, 'cutoff_length': 33.0,
105           'scale': 0.1,
106           }, 0.51, 2.50020147004],
107         ]
Note: See TracBrowser for help on using the repository browser.