source: sasmodels/_sources/model/lamellarCaille.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: 3.1 KB
Line 
1.. _lamellarPS:
2
3Lamellarps
4=======================================================
5
6Random lamellar sheet with Caille structure factor
7
8================ ================================= ============ =============
9Parameter        Description                       Units        Default value
10================ ================================= ============ =============
11scale            Source intensity                  None                     1
12background       Source background                 |cm^-1|                  0
13thickness        sheet thickness                   |Ang|                   30
14Nlayers          Number of layers                  None                    20
15spacing          d-spacing of Caille S(Q)          |Ang|                  400
16Caille_parameter Caille parameter                  |Ang^-2|               0.1
17sld              layer scattering length density   |1e-6Ang^-2|           6.3
18solvent_sld      Solvent scattering length density |1e-6Ang^-2|             1
19================ ================================= ============ =============
20
21The returned value is scaled to units of |cm^-1|.
22
23
24This model provides the scattering intensity, $I(q) = P(q) S(q)$, for a
25lamellar phase where a random distribution in solution are assumed.
26Here a Caille $S(Q)$ is used for the lamellar stacks.
27
28The scattering intensity $I(q)$ is
29
30.. math:
31
32    I(q) = 2\pi \frac{P(q)S(q)}{\delta q^2}
33
34The form factor is
35
36.. math:
37
38    P(q) = \frac{2\Delta\rho^2}{q^2}\left(1-\cos q\delta \right)
39
40and the structure factor is
41
42.. math:
43
44    S(q) = 1 + 2 \sum_1^{N-1}\left(1-\frac{n}{N}\right)
45           \cos(qdn)\exp\left(-\frac{2q^2d^2\alpha(n)}{2}\right)
46
47where
48
49.. math:
50
51    \begin{eqnarray}
52    \alpha(n) &=& \frac{\eta_{cp}}{4\pi^2} \left(\ln(\pi n)+\gamma_E\right)  \\
53    \gamma_E &=& 0.5772156649 && \text{Euler's constant} \\
54    \eta_{cp} &=& \frac{q_o^2k_B T}{8\pi\sqrt{K\overline{B}}} && \text{Caille constant}
55    \end{eqnarray}
56
57Here $d$ = (repeat) spacing, $\delta$ = bilayer thickness,
58the contrast $\Delta\rho$ = SLD(headgroup) - SLD(solvent),
59$K$ = smectic bending elasticity, $B$ = compression modulus, and
60$N$ = number of lamellar plates (*n_plates*).
61
62NB: **When the Caille parameter is greater than approximately 0.8 to 1.0, the
63assumptions of the model are incorrect.** And due to a complication of the
64model function, users are responsible for making sure that all the assumptions
65are handled accurately (see the original reference below for more details).
66
67Non-integer numbers of stacks are calculated as a linear combination of
68results for the next lower and higher values.
69
70The 2D scattering intensity is calculated in the same way as 1D, where the
71$q$ vector is defined as
72
73.. math::
74
75    q = \sqrt{q_x^2 + q_y^2}
76
77The returned value is in units of |cm^-1|, on absolute scale.
78
79.. image:: img/lamellarCaille_1d.jpg
80
81*Figure. 1D plot using the default values (w/6000 data point).*
82
83Our model uses the form factor calculations as implemented in a c library
84provided by the NIST Center for Neutron Research (Kline, 2006).
85
86REFERENCE
87---------
88
89F Nallet, R Laversanne, and D Roux, J. Phys. II France, 3, (1993) 487-502
90
91also in J. Phys. Chem. B, 105, (2001) 11081-11088
92
Note: See TracBrowser for help on using the repository browser.