source: sasmodels/sasmodels/models/surface_fractal.py @ 07a6700

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

More unit tests for converted models.

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