source: sasmodels/_sources/model/bcc.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: 4.4 KB
Line 
1.. _bcc-paracrystal:
2
3Bcc paracrystal
4=======================================================
5
6Body-centred cubic lattic with paracrystalline distortion
7
8=========== ================================== ============ =============
9Parameter   Description                        Units        Default value
10=========== ================================== ============ =============
11scale       Source intensity                   None                     1
12background  Source background                  |cm^-1|                  0
13dnn         Nearest neighbour distance         |Ang|                  220
14d_factor    Paracrystal distortion factor      None                  0.06
15radius      Particle radius                    |Ang|                   40
16sld         Particle scattering length density |1e-6Ang^-2|             4
17solvent_sld Solvent scattering length density  |1e-6Ang^-2|             1
18theta       In plane angle                     degree                  60
19phi         Out of plane angle                 degree                  60
20psi         Out of plane angle                 degree                  60
21=========== ================================== ============ =============
22
23The returned value is scaled to units of |cm^-1|.
24
25
26Calculates the scattering from a **body-centered cubic lattice** with
27paracrystalline distortion. Thermal vibrations are considered to be negligible,
28and the size of the paracrystal is infinitely large. Paracrystalline distortion
29is assumed to be isotropic and characterized by a Gaussian distribution.
30
31The returned value is scaled to units of |cm^-1|\ |sr^-1|, absolute scale.
32
33Definition
34----------
35
36The scattering intensity $I(q)$ is calculated as
37
38.. math:
39
40    I(q) = \frac{\text{scale}}{V_P} V_\text{lattice} P(q) Z(q)
41
42
43where *scale* is the volume fraction of spheres, *Vp* is the volume of the
44primary particle, *V(lattice)* is a volume correction for the crystal
45structure, $P(q)$ is the form factor of the sphere (normalized), and $Z(q)$
46is the paracrystalline structure factor for a body-centered cubic structure.
47
48Equation (1) of the 1990 reference is used to calculate $Z(q)$, using
49equations (29)-(31) from the 1987 paper for *Z1*\ , *Z2*\ , and *Z3*\ .
50
51The lattice correction (the occupied volume of the lattice) for a
52body-centered cubic structure of particles of radius $R$ and nearest neighbor
53separation $D$ is
54
55.. math:
56
57    V_\text{lattice} = \frac{16\pi}{3} \frac{R^3}{\left(D\sqrt{2}\right)^3}
58
59
60The distortion factor (one standard deviation) of the paracrystal is included
61in the calculation of $Z(q)$
62
63.. math:
64
65    \Delta a = g D
66
67where $g$ is a fractional distortion based on the nearest neighbor distance.
68
69The body-centered cubic lattice is
70
71.. image:: img/bcc_lattice.jpg
72
73For a crystal, diffraction peaks appear at reduced q-values given by
74
75.. math:
76
77    \frac{qD}{2\pi} = \sqrt{h^2 + k^2 + l^2}
78
79where for a body-centered cubic lattice, only reflections where
80$(h + k + l) = \text{even}$ are allowed and reflections where
81$(h + k + l) = \text{odd}$ are forbidden. Thus the peak positions
82correspond to (just the first 5)
83
84.. math:
85
86    \begin{eqnarray}
87    &q/q_o&&\quad 1&& \ \sqrt{2} && \ \sqrt{3} && \ \sqrt{4} && \ \sqrt{5} \\
88    &\text{Indices}&& (110) && (200) && (211) && (220) && (310)
89    \end{eqnarray}
90
91**NB: The calculation of $Z(q)$ is a double numerical integral that must
92be carried out with a high density of points to properly capture the sharp
93peaks of the paracrystalline scattering.** So be warned that the calculation
94is SLOW. Go get some coffee. Fitting of any experimental data must be
95resolution smeared for any meaningful fit. This makes a triple integral.
96Very, very slow. Go get lunch!
97
98This example dataset is produced using 200 data points,
99*qmin* = 0.001 |Ang^-1|, *qmax* = 0.1 |Ang^-1| and the above default values.
100
101.. image:: img/bcc_1d.jpg
102
103*Figure. 1D plot in the linear scale using the default values
104(w/200 data point).*
105
106The 2D (Anisotropic model) is based on the reference below where $I(q)$ is
107approximated for 1d scattering. Thus the scattering pattern for 2D may not
108be accurate. Note that we are not responsible for any incorrectness of the 2D
109model computation.
110
111.. image:: img/bcc_orientation.gif
112
113.. image:: img/bcc_2d.jpg
114
115*Figure. 2D plot using the default values (w/200X200 pixels).*
116
117REFERENCE
118---------
119
120Hideki Matsuoka et. al. *Physical Review B*, 36 (1987) 1754-1765
121(Original Paper)
122
123Hideki Matsuoka et. al. *Physical Review B*, 41 (1990) 3854 -3856
124(Corrections to FCC and BCC lattice structure calculation)
125
Note: See TracBrowser for help on using the repository browser.