Changeset 5810f00 in sasmodels
- Timestamp:
- Nov 26, 2016 8:28:11 PM (8 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- 797a8e3
- Parents:
- 755ecc2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/models/core_shell_parallelepiped.py
r2222134 r5810f00 1 # core_shell_parallelepiped model2 # Note: model title and parameter table are inserted automatically3 1 r""" 2 Definition 3 ---------- 4 4 5 Calculates the form factor for a rectangular solid with a core-shell structure. 5 6 **The thickness and the scattering length density of the shell or "rim" … … 15 16 of the rectangular solid. 16 17 17 An instrument resolution smeared version of the model is also provided.18 19 20 Definition21 ----------22 18 23 19 The function calculated is the form factor of the rectangular solid below. … … 41 37 **meaning that there are "gaps" at the corners of the solid.** 42 38 43 The intensity calculated follows the :ref:`parallelepiped` model, with the core-shell 44 intensity being calculated as the square of the sum of the amplitudes of the 45 core and shell, in the same manner as a core-shell model. 46 47 **For the calculation of the form factor to be valid, the sides of the solid 48 MUST be chosen such that** $A < B < C$. 49 **If this inequality is not satisfied, the model will not report an error, 50 and the calculation will not be correct.** 39 The intensity calculated follows the :ref:`parallelepiped` model, with the 40 core-shell intensity being calculated as the square of the sum of the 41 amplitudes of the core and shell, in the same manner as a core-shell model. 42 43 .. math:: 44 45 F_{a}(Q,\alpha,\beta)= 46 \Bigg(\frac{sin(Q(L_A+2t_A)/2sin\alpha sin\beta)}{Q(L_A+2t_A)/2sin\alpha 47 sin\beta)} 48 - \frac{sin(QL_A/2sin\alpha sin\beta)}{QL_A/2sin\alpha sin\beta)} \Bigg) 49 + \frac{sin(QL_B/2sin\alpha sin\beta)}{QL_B/2sin\alpha sin\beta)} 50 + \frac{sin(QL_C/2sin\alpha sin\beta)}{QL_C/2sin\alpha sin\beta)} 51 52 .. note:: 53 54 For the calculation of the form factor to be valid, the sides of the solid 55 MUST be chosen such that** $A < B < C$. 56 If this inequality is not satisfied, the model will not report an error, 57 but the calculation will not be correct and thus the result wrong. 51 58 52 59 FITTING NOTES 53 60 If the scale is set equal to the particle volume fraction, |phi|, the returned 54 61 value is the scattered intensity per unit volume, $I(q) = \phi P(q)$. 55 However, **no interparticle interference effects are included in this calculation.** 62 However, **no interparticle interference effects are included in this 63 calculation.** 56 64 57 65 There are many parameters in this model. Hold as many fixed as possible with … … 68 76 and length $(C+2t_C)$ values, and used as the effective radius 69 77 for $S(Q)$ when $P(Q) * S(Q)$ is applied. 70 71 .. Comment by Miguel Gonzalez:72 The later seems to contradict the previous statement that interparticle interference73 effects are not included.74 78 75 79 To provide easy access to the orientation of the parallelepiped, we define the … … 98 102 ---------- 99 103 100 P Mittelbach and G Porod, *Acta Physica Austriaca*, 14 (1961) 185-211 101 Equations (1), (13-14). (in German) 102 104 .. [#] P Mittelbach and G Porod, *Acta Physica Austriaca*, 14 (1961) 185-211 105 Equations (1), (13-14). (in German) 106 .. [#] D Singh (2009). *Small angle scattering studies of self assembly in 107 lipid mixtures*, John's Hopkins University Thesis (2009) 223-225. `Available 108 from Proquest <http://search.proquest.com/docview/304915826?accountid 109 =26379>`_ 110 111 Authorship and Verification 112 ---------------------------- 113 114 * **Author:** NIST IGOR/DANSE **Date:** pre 2010 115 * **Last Modified by:** Paul Butler **Date:** September 30, 2016 116 * **Last Reviewed by:** Miguel Gonzales **Date:** March 21, 2016 103 117 """ 104 118
Note: See TracChangeset
for help on using the changeset viewer.