source: sasmodels/sasmodels/models/sc_paracrystal.py @ c1e44e5

Last change on this file since c1e44e5 was c1e44e5, checked in by Paul Kienzle <pkienzle@…>, 5 years ago

Add local link to source files. Refs #1263.

  • Property mode set to 100644
File size: 6.6 KB
Line 
1r"""
2.. warning:: This model and this model description are under review following
3             concerns raised by SasView users. If you need to use this model,
4             please email help@sasview.org for the latest situation. *The
5             SasView Developers. September 2018.*
6
7Definition
8----------
9
10Calculates the scattering from a **simple cubic lattice** with
11paracrystalline distortion. Thermal vibrations are considered to be
12negligible, and the size of the paracrystal is infinitely large.
13Paracrystalline distortion is assumed to be isotropic and characterized
14by a Gaussian distribution.
15
16The scattering intensity $I(q)$ is calculated as
17
18.. math::
19
20    I(q) = \text{scale}\frac{V_\text{lattice}P(q)Z(q)}{V_p} + \text{background}
21
22where scale is the volume fraction of spheres, $V_p$ is the volume of
23the primary particle, $V_\text{lattice}$ is a volume correction for the crystal
24structure, $P(q)$ is the form factor of the sphere (normalized), and
25$Z(q)$ is the paracrystalline structure factor for a simple cubic structure.
26
27Equation (16) of the 1987 reference\ [#CIT1987]_ is used to calculate $Z(q)$,
28using equations (13)-(15) from the 1987 paper\ [#CIT1990]_ for $Z1$, $Z2$, and
29$Z3$.
30
31The lattice correction (the occupied volume of the lattice) for a simple cubic
32structure of particles of radius *R* and nearest neighbor separation *D* is
33
34.. math::
35
36    V_\text{lattice}=\frac{4\pi}{3}\frac{R^3}{D^3}
37
38The distortion factor (one standard deviation) of the paracrystal is included
39in the calculation of $Z(q)$
40
41.. math::
42
43    \Delta a = gD
44
45where *g* is a fractional distortion based on the nearest neighbor distance.
46
47The simple cubic lattice is
48
49.. figure:: img/sc_crystal_geometry.jpg
50
51For a crystal, diffraction peaks appear at reduced q-values given by
52
53.. math::
54
55    \frac{qD}{2\pi} = \sqrt{h^2+k^2+l^2}
56
57where for a simple cubic lattice any h, k, l are allowed and none are
58forbidden. Thus the peak positions correspond to (just the first 5)
59
60.. math::
61    :nowrap:
62
63    \begin{align*}
64    q/q_0 \quad & \quad 1
65                & \sqrt{2} \quad
66                & \quad  \sqrt{3} \quad
67                & \sqrt{4} \quad
68                & \quad \sqrt{5}\quad \\
69    Indices \quad & (100)
70                  & \quad (110) \quad
71                  & \quad (111)
72                  & (200) \quad
73                  & \quad (210)
74    \end{align*}
75
76.. note::
77
78    The calculation of *Z(q)* is a double numerical integral that must be
79    carried out with a high density of points to properly capture the sharp
80    peaks of the paracrystalline scattering.
81    So be warned that the calculation is slow. Fitting of any experimental data
82    must be resolution smeared for any meaningful fit. This makes a triple
83    integral which may be very slow.
84
85The 2D (Anisotropic model) is based on the reference below where *I(q)* is
86approximated for 1d scattering. Thus the scattering pattern for 2D may not
87be accurate particularly at low $q$. For general details of the calculation
88and angular dispersions for oriented particles see :ref:`orientation` .
89Note that we are not responsible for any incorrectness of the
902D model computation.
91
92.. figure:: img/parallelepiped_angle_definition.png
93
94    Orientation of the crystal with respect to the scattering plane, when
95    $\theta = \phi = 0$ the $c$ axis is along the beam direction (the $z$ axis).
96
97Reference
98---------
99
100.. [#CIT1987] Hideki Matsuoka et. al. *Physical Review B*, 36 (1987) 1754-1765 (Original Paper)
101.. [#CIT1990] Hideki Matsuoka et. al. *Physical Review B*, 41 (1990) 3854 -3856 (Corrections to FCC and BCC lattice structure calculation)
102
103Authorship and Verification
104---------------------------
105
106* **Author:** NIST IGOR/DANSE **Date:** pre 2010
107* **Last Modified by:** Steve King **Date:** March 25, 2019
108* **Last Reviewed by:** Richard Heenan **Date:** March 21, 2016
109"""
110
111import numpy as np
112from numpy import inf
113
114name = "sc_paracrystal"
115title = "Simple cubic lattice with paracrystalline distortion"
116description = """
117        P(q)=(scale/Vp)*V_lattice*P(q)*Z(q)+bkg where scale is the volume
118        fraction of sphere,
119        Vp = volume of the primary particle,
120        V_lattice = volume correction for
121        for the crystal structure,
122        P(q)= form factor of the sphere (normalized),
123        Z(q)= paracrystalline structure factor
124        for a simple cubic structure.
125        [Simple Cubic ParaCrystal Model]
126        Parameters;
127        scale: volume fraction of spheres
128        bkg:background, R: radius of sphere
129        dnn: Nearest neighbor distance
130        d_factor: Paracrystal distortion factor
131        radius: radius of the spheres
132        sldSph: SLD of the sphere
133        sldSolv: SLD of the solvent
134        """
135category = "shape:paracrystal"
136single = False
137# pylint: disable=bad-whitespace, line-too-long
138#             ["name", "units", default, [lower, upper], "type","description"],
139parameters = [["dnn",         "Ang",       220.0, [0.0, inf],  "",            "Nearest neighbor distance"],
140              ["d_factor",    "",           0.06, [-inf, inf], "",            "Paracrystal distortion factor"],
141              ["radius",      "Ang",        40.0, [0.0, inf],  "volume",      "Radius of sphere"],
142              ["sld",  "1e-6/Ang^2",         3.0, [0.0, inf],  "sld",         "Sphere scattering length density"],
143              ["sld_solvent", "1e-6/Ang^2",  6.3, [0.0, inf],  "sld",         "Solvent scattering length density"],
144              ["theta",       "degrees",    0,    [-360, 360], "orientation", "c axis to beam angle"],
145              ["phi",         "degrees",    0,    [-360, 360], "orientation", "rotation about beam"],
146              ["psi",         "degrees",    0,    [-360, 360], "orientation", "rotation about c axis"]
147             ]
148# pylint: enable=bad-whitespace, line-too-long
149
150source = ["lib/sas_3j1x_x.c", "lib/sphere_form.c", "lib/gauss150.c", "sc_paracrystal.c"]
151
152def random():
153    """Return a random parameter set for the model."""
154    # copied from bcc_paracrystal
155    radius = 10**np.random.uniform(1.3, 4)
156    d_factor = 10**np.random.uniform(-2, -0.7)  # sigma_d in 0.01-0.7
157    dnn_fraction = np.random.beta(a=10, b=1)
158    dnn = radius*4/np.sqrt(4)/dnn_fraction
159    pars = dict(
160        #sld=1, sld_solvent=0, scale=1, background=1e-32,
161        dnn=dnn,
162        d_factor=d_factor,
163        radius=radius,
164    )
165    return pars
166
167tests = [
168    # Accuracy tests based on content in test/utest_extra_models.py, 2d tests added April 10, 2017
169    [{}, 0.001, 10.3048],
170    [{}, 0.215268, 0.00814889],
171    [{}, 0.414467, 0.001313289],
172    [{'theta': 10.0, 'phi': 20, 'psi': 30.0}, (0.045, -0.035), 18.0397138402],
173    [{'theta': 10.0, 'phi': 20, 'psi': 30.0}, (0.023, 0.045), 0.0177333171285],
174    ]
Note: See TracBrowser for help on using the repository browser.