source: sasmodels/sasmodels/models/rpa.py @ 4f9e288

core_shell_microgelscostrafo411magnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 4f9e288 was 4f9e288, checked in by butler, 7 years ago

update RPA documentation

  • Property mode set to 100644
File size: 5.3 KB
Line 
1r"""
2Definition
3----------
4
5Calculates the macroscopic scattering intensity for a multi-component
6homogeneous mixture of polymers using the Random Phase Approximation.
7This general formalism contains 10 specific cases
8
9Case 0: C/D binary mixture of homopolymers
10
11Case 1: C-D diblock copolymer
12
13Case 2: B/C/D ternary mixture of homopolymers
14
15Case 3: C/C-D mixture of a homopolymer B and a diblock copolymer C-D
16
17Case 4: B-C-D triblock copolymer
18
19Case 5: A/B/C/D quaternary mixture of homopolymers
20
21Case 6: A/B/C-D mixture of two homopolymers A/B and a diblock C-D
22
23Case 7: A/B-C-D mixture of a homopolymer A and a triblock B-C-D
24
25Case 8: A-B/C-D mixture of two diblock copolymers A-B and C-D
26
27Case 9: A-B-C-D tetra-block copolymer
28
29.. note::
30    These case numbers are different from those in the NIST SANS package!
31
32The models are based on the papers by Akcasu et al. [#Akcasu]_ and by
33Hammouda [#Hammouda]_ assuming the polymer follows Gaussian statistics such
34that $R_g^2 = n b^2/6$ where $b$ is the statistical segment length and $n$ is
35the number of statistical segment lengths. A nice tutorial on how these are
36constructed and implemented can be found in chapters 28 and 39 of Boualem
37Hammouda's 'SANS Toolbox'[#toolbox]_.
38
39In brief the macroscopic cross sections are derived from the general forms
40for homopolymer scattering and the multiblock cross-terms while the inter
41polymer cross terms are described in the usual way by the $\chi$ parameter.
42
43USAGE NOTES:
44
45* Only one case can be used at any one time.
46* The RPA (mean field) formalism only applies only when the multicomponent
47  polymer mixture is in the homogeneous mixed-phase region.
48* **Component D is assumed to be the "background" component (ie, all contrasts
49  are calculated with respect to component D).** So the scattering contrast
50  for a C/D blend = [SLD(component C) - SLD(component D)]\ :sup:`2`.
51* Depending on which case is being used, the number of fitting parameters can
52  vary.
53
54  .. Note::
55    * In general the degrees of polymerization, the volume
56      fractions, the molar volumes, and the neutron scattering lengths for each
57      component are obtained from other methods and held fixed while The *scale*
58      parameter should be held equal to unity.
59    * The variables are normally the segment lengths (b\ :sub:`a`, b\ :sub:`b`,
60      etc) and $\chi$ parameters (K\ :sub:`ab`, K\ :sub:`ac`, etc).
61
62
63References
64----------
65
66.. [#Akcasu] A Z Akcasu, R Klein and B Hammouda, *Macromolecules*, 26 (1993)
67   4136.
68.. [#Hammouda] B. Hammouda, *Advances in Polymer Science* 106 (1993) 87.
69.. [#toolbox] https://www.ncnr.nist.gov/staff/hammouda/the_sans_toolbox.pdf
70
71Authorship and Verification
72----------------------------
73
74* **Author:** Boualem Hammouda - NIST IGOR/DANSE **Date:** pre 2010
75* **Converted to sasmodels by:** Paul Kienzle **Date:** July 18, 2016
76* **Last Modified by:** Paul Butler **Date:** March 12, 2017
77* **Last Reviewed by:** Paul Butler **Date:** March 12, 2017
78"""
79
80from numpy import inf
81
82name = "rpa"
83title = "Random Phase Approximation"
84description = """
85This formalism applies to multicomponent polymer mixtures in the
86homogeneous (mixed) phase region only.
87Case 0: C/D binary mixture of homopolymers
88Case 1: C-D diblock copolymer
89Case 2: B/C/D ternary mixture of homopolymers
90Case 3: B/C-D mixture of homopolymer b and diblock copolymer C-D
91Case 4: B-C-D triblock copolymer
92Case 5: A/B/C/D quaternary mixture of homopolymers
93Case 6: A/B/C-D mixture of two homopolymers A/B and a diblock C-D
94Case 7: A/B-C-D mixture of a homopolymer A and a triblock B-C-D
95Case 8: A-B/C-D mixture of two diblock copolymers A-B and C-D
96Case 9: A-B-C-D four-block copolymer
97See details in the model function help
98"""
99category = "shape-independent"
100
101CASES = [
102    "C+D binary mixture",
103    "C:D diblock copolymer",
104    "B+C+D ternary mixture",
105    "B+C:D binary mixture",
106    "B:C:D triblock copolymer",
107    "A+B+C+D quaternary mixture",
108    "A+B+C:D ternary mixture",
109    "A+B:C:D binary mixture",
110    "A:B+C:D binary mixture",
111    "A:B:C:D quadblock copolymer",
112]
113
114#   ["name", "units", default, [lower, upper], "type","description"],
115parameters = [
116    ["case_num", "", 1, [CASES], "", "Component organization"],
117
118    ["N[4]", "", 1000.0, [1, inf], "", "Degree of polymerization"],
119    ["Phi[4]", "", 0.25, [0, 1], "", "volume fraction"],
120    ["v[4]", "mL/mol", 100.0, [0, inf], "", "molar volume"],
121    ["L[4]", "fm", 10.0, [-inf, inf], "", "scattering length"],
122    ["b[4]", "Ang", 5.0, [0, inf], "", "segment length"],
123
124    ["K12", "", -0.0004, [-inf, inf], "", "A:B interaction parameter"],
125    ["K13", "", -0.0004, [-inf, inf], "", "A:C interaction parameter"],
126    ["K14", "", -0.0004, [-inf, inf], "", "A:D interaction parameter"],
127    ["K23", "", -0.0004, [-inf, inf], "", "B:C interaction parameter"],
128    ["K24", "", -0.0004, [-inf, inf], "", "B:D interaction parameter"],
129    ["K34", "", -0.0004, [-inf, inf], "", "C:D interaction parameter"],
130]
131
132
133source = ["rpa.c"]
134single = False
135
136control = "case_num"
137HIDE_ALL = set("Phi4".split())
138HIDE_A = set("N1 Phi1 v1 L1 b1 K12 K13 K14".split()).union(HIDE_ALL)
139HIDE_AB = set("N2 Phi2 v2 L2 b2 K23 K24".split()).union(HIDE_A)
140def hidden(case_num):
141    """
142    Return a list of parameters to hide depending on the multiplicity parameter.
143    """
144    case_num = int(case_num+0.5)
145    if case_num < 2:
146        return HIDE_AB
147    elif case_num < 5:
148        return HIDE_A
149    else:
150        return HIDE_ALL
151
Note: See TracBrowser for help on using the repository browser.