source: sasmodels/sasmodels/models/mass_fractal.py @ 4553dae

core_shell_microgelscostrafo411magnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 4553dae was 4553dae, checked in by Paul Kienzle <pkienzle@…>, 7 years ago

don't generate psi dispersity if shape has rotational symmetry

  • Property mode set to 100644
File size: 3.7 KB
Line 
1r"""
2Calculates the scattering from fractal-like aggregates based on
3the 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(D_m-1)\zeta^{D_m-1}}{\left[1+(q\zeta)^2
25    \right]^{(D_m-1)/2}}
26    \frac{sin\left[(D_m - 1) tan^{-1}(q\zeta) \right]}{q}
27
28.. math::
29
30    scale = scale\_factor \times NV^2(\rho_\text{particle} - \rho_\text{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_m$ is the **mass** fractal
37dimension, $\zeta$  is the cut-off length, $\rho_\text{solvent}$ is the scattering
38length density of the solvent, and $\rho_\text{particle}$ is the scattering
39length density of particles.
40
41.. note::
42
43    The mass fractal dimension ( $D_m$ ) is only
44    valid if $1 < mass\_dim < 6$. It is also only valid over a limited
45    $q$ range (see the reference for details).
46
47
48References
49----------
50
51D Mildner and P Hall, *J. Phys. D: Appl. Phys.*,
5219 (1986) 1535-1545 Equation(9)
53
54
55"""
56
57from numpy import inf
58
59name = "mass_fractal"
60title = "Mass Fractal model"
61description = """
62        The scattering intensity  I(x) = scale*P(x)*S(x) + background, where
63        scale = scale_factor  * V * delta^(2)
64        p(x)=  F(x*radius)^(2)
65        F(x) = 3*[sin(x)-x cos(x)]/x**3
66        S(x) = [(gamma(Dm-1)*colength^(Dm-1)*[1+(x^2*colength^2)]^((1-Dm)/2)
67        * sin[(Dm-1)*arctan(x*colength)])/x]
68        where delta = sldParticle -sldSolv.
69        radius       =  Particle radius
70        fractal_dim_mass  =  Mass fractal dimension
71        cutoff_length  =  Cut-off length
72        background   =  background
73        Ref.:Mildner, Hall,J Phys D Appl Phys(1986), 9, 1535-1545
74        Note I: This model is valid for 1<fractal_dim_mass<6.
75        Note II: This model is not in absolute scale.
76        """
77category = "shape-independent"
78
79# pylint: disable=bad-whitespace, line-too-long
80#   ["name", "units", default, [lower, upper], "type","description"],
81parameters = [
82    ["radius",           "Ang",  10.0, [0.0, inf], "", "Particle radius"],
83    ["fractal_dim_mass", "",      1.9, [1.0, 6.0], "", "Mass fractal dimension"],
84    ["cutoff_length",    "Ang", 100.0, [0.0, inf], "", "Cut-off length"],
85]
86# pylint: enable=bad-whitespace, line-too-long
87
88source = ["lib/sas_3j1x_x.c", "lib/sas_gamma.c", "mass_fractal.c"]
89
90def random():
91    import numpy as np
92    radius = 10**np.random.uniform(0.7, 4)
93    cutoff_length = 10**np.random.uniform(0.7, 2)*radius
94    # TODO: fractal dimension should range from 1 to 6
95    fractal_dim_mass = 2*np.random.beta(3, 4) + 1
96    Vf = 10**np.random.uniform(-4, -1)
97    pars = dict(
98        #background=0,
99        scale=1, #1e5*Vf/radius**(fractal_dim_mass),
100        radius=radius,
101        cutoff_length=cutoff_length,
102        fractal_dim_mass=fractal_dim_mass,
103    )
104    return pars
105
106demo = dict(scale=1, background=0,
107            radius=10.0,
108            fractal_dim_mass=1.9,
109            cutoff_length=100.0)
110
111tests = [
112
113    # Accuracy tests based on content in test/utest_other_models.py
114    [{'radius':         10.0,
115      'fractal_dim_mass':        1.9,
116      'cutoff_length': 100.0,
117     }, 0.05, 279.59422],
118
119    # Additional tests with larger range of parameters
120    [{'radius':        2.0,
121      'fractal_dim_mass':      3.3,
122      'cutoff_length': 1.0,
123     }, 0.5, 1.29116774904],
124
125    [{'radius':        1.0,
126      'fractal_dim_mass':      1.3,
127      'cutoff_length': 1.0,
128      'background':    0.8,
129     }, 0.001, 1.69747015932],
130
131    [{'radius':        1.0,
132      'fractal_dim_mass':      2.3,
133      'cutoff_length': 1.0,
134      'scale':        10.0,
135     }, 0.051, 11.6237966145],
136    ]
Note: See TracBrowser for help on using the repository browser.