source: sasmodels/sasmodels/models/lamellar_hg.py @ 6ab4ed8

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

renamed params etc in more lamellar models

  • Property mode set to 100644
File size: 3.8 KB
Line 
1# Note: model title and parameter table are inserted automatically
2r"""
3This model provides the scattering intensity, $I(q)$, for a lyotropic lamellar
4phase where a random distribution in solution are assumed. The SLD of the head
5region is taken to be different from the SLD of the tail region.
6
7Definition
8----------
9
10The scattering intensity $I(q)$ is
11
12.. math::
13
14   I(q) = 2\pi\frac{\text{scale}}{2(\delta_H + \delta_T)}  P(q) \frac{1}{q^2}
15
16The form factor $P(q)$ is
17
18.. math::
19
20    P(q) = \frac{4}{q^2}
21        \left\lbrace
22            \Delta \rho_H
23            \left[\sin[q(\delta_H + \delta_T)\ - \sin(q\delta_T)\right]
24            + \Delta\rho_T\sin(q\delta_T)
25        \right\rbrace^2
26
27where $\delta_T$ is *tail_length*, $\delta_H$ is *head_length*,
28$\Delta\rho_H$ is the head contrast (*sld_head* $-$ *sld_solvent*),
29and $\Delta\rho_T$ is tail contrast (*sld* $-$ *sld_solvent*).
30
31The 2D scattering intensity is calculated in the same way as 1D, where
32the $q$ vector is defined as
33
34.. math::
35
36    q = \sqrt{q_x^2 + q_y^2}
37
38
39References
40----------
41
42F Nallet, R Laversanne, and D Roux, J. Phys. II France, 3, (1993) 487-502
43
44also in J. Phys. Chem. B, 105, (2001) 11081-11088
45
46*2014/04/17 - Description reviewed by S King and P Butler.*
47"""
48
49from numpy import inf
50
51name = "lamellar_hg"
52title = "Random lamellar phase with Head and Tail Groups"
53description = """\
54    [Random lamellar phase with Head and Tail Groups]
55        I(q)= 2*pi*P(q)/(2(H+T)*q^(2)), where
56        P(q)= see manual
57        layer thickness =(H+T+T+H) = 2(Head+Tail)
58        sld = Tail scattering length density
59        sld_head = Head scattering length density
60        sld_solvent = solvent scattering length density
61        background = incoherent background
62        scale = scale factor
63"""
64category = "shape:lamellae"
65
66# pylint: disable=bad-whitespace, line-too-long
67#             ["name", "units", default, [lower, upper], "type","description"],
68parameters = [["tail_length", "Ang",       15,   [0, inf],  "volume",  "Tail thickness ( total = H+T+T+H)"],
69              ["head_length", "Ang",       10,   [0, inf],  "volume",  "Head thickness"],
70              ["sld",         "1e-6/Ang^2", 0.4, [-inf,inf], "",       "Tail scattering length density"],
71              ["sld_head",    "1e-6/Ang^2", 3.0, [-inf,inf], "",       "Head scattering length density"],
72              ["sld_solvent", "1e-6/Ang^2", 6,   [-inf,inf], "",       "Solvent scattering length density"]]
73# pylint: enable=bad-whitespace, line-too-long
74
75# No volume normalization despite having a volume parameter
76# This should perhaps be volume normalized?
77form_volume = """
78    return 1.0;
79    """
80
81Iq = """
82    const double qsq = q*q;
83    const double drh = sld_head - sld_solvent;
84    const double drt = sld - sld_solvent;    //correction 13FEB06 by L.Porcar
85    const double qT = q*tail_length;
86    double Pq, inten;
87    Pq = drh*(sin(q*(head_length+tail_length))-sin(qT)) + drt*sin(qT);
88    Pq *= Pq;
89    Pq *= 4.0/(qsq);
90
91    inten = 2.0e-4*M_PI*Pq/qsq;
92
93    // normalize by the bilayer thickness
94    inten /= 2.0*(head_length+tail_length);
95
96    return inten;
97    """
98
99Iqxy = """
100    return Iq(sqrt(qx*qx+qy*qy), IQ_PARAMETERS);
101    """
102
103# ER defaults to 0.0
104# VR defaults to 1.0
105
106demo = dict(scale=1, background=0,
107            tail_length=15, head_length=10,
108            sld=0.4, sld_head=3.0, sld_solvent=6.0,
109            tail_length_pd=0.2, tail_length_pd_n=40,
110            head_length_pd=0.01, head_length_pd_n=40)
111
112oldname = 'LamellarFFHGModel'
113oldpars = dict(head_length='h_thickness', tail_length='t_length',
114               sld='sld_tail', sld_head='sld_head', sld_solvent='sld_solvent')
115#
116tests = [[{'scale': 1.0, 'background': 0.0, 'tail_length': 15.0, 'head_length': 10.0,
117           'sld': 0.4, 'sld_head': 3.0, 'sld_solvent': 6.0}, [0.001], [653143.9209]]]
118# ADDED by: RKH  ON: 18Mar2016  converted from sasview previously, now renaming everything & sorting the docs
Note: See TracBrowser for help on using the repository browser.