1 | #!/usr/bin/env python |
---|
2 | |
---|
3 | ############################################################################## |
---|
4 | # This software was developed by the University of Tennessee as part of the |
---|
5 | # Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
6 | # project funded by the US National Science Foundation. |
---|
7 | # |
---|
8 | # If you use DANSE applications to do scientific research that leads to |
---|
9 | # publication, we ask that you acknowledge the use of the software with the |
---|
10 | # following sentence: |
---|
11 | # |
---|
12 | # "This work benefited from DANSE software developed under NSF award DMR-0520547." |
---|
13 | # |
---|
14 | # copyright 2008, University of Tennessee |
---|
15 | ############################################################################## |
---|
16 | |
---|
17 | |
---|
18 | """ |
---|
19 | Provide functionality for a C extension model |
---|
20 | |
---|
21 | :WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY |
---|
22 | DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\HayterMSA.h |
---|
23 | AND RE-RUN THE GENERATOR SCRIPT |
---|
24 | |
---|
25 | """ |
---|
26 | |
---|
27 | from sans.models.BaseComponent import BaseComponent |
---|
28 | from sans_extension.c_models import CHayterMSAStructure |
---|
29 | import copy |
---|
30 | |
---|
31 | class HayterMSAStructure(CHayterMSAStructure, BaseComponent): |
---|
32 | """ |
---|
33 | Class that evaluates a HayterMSAStructure model. |
---|
34 | This file was auto-generated from ..\c_extensions\HayterMSA.h. |
---|
35 | Refer to that file and the structure it contains |
---|
36 | for details of the model. |
---|
37 | List of default parameters: |
---|
38 | effect_radius = 20.75 [A] |
---|
39 | charge = 19.0 |
---|
40 | volfraction = 0.0192 |
---|
41 | temperature = 318.16 [K] |
---|
42 | saltconc = 0.0 [M] |
---|
43 | dielectconst = 71.08 |
---|
44 | |
---|
45 | """ |
---|
46 | |
---|
47 | def __init__(self): |
---|
48 | """ Initialization """ |
---|
49 | |
---|
50 | # Initialize BaseComponent first, then sphere |
---|
51 | BaseComponent.__init__(self) |
---|
52 | CHayterMSAStructure.__init__(self) |
---|
53 | |
---|
54 | ## Name of the model |
---|
55 | self.name = "HayterMSAStructure" |
---|
56 | ## Model description |
---|
57 | self.description ="""To calculate the structure factor (the Fourier transform of the |
---|
58 | pair correlation function g(r)) for a system of |
---|
59 | charged, spheroidal objects in a dielectric |
---|
60 | medium. |
---|
61 | When combined with an appropriate form |
---|
62 | factor, this allows for inclusion of |
---|
63 | the interparticle interference effects |
---|
64 | due to screened coulomb repulsion between |
---|
65 | charged particles. |
---|
66 | (Note: charge > 0 required.) |
---|
67 | |
---|
68 | Ref: JP Hansen and JB Hayter, Molecular |
---|
69 | Physics 46, 651-656 (1982). |
---|
70 | """ |
---|
71 | |
---|
72 | ## Parameter details [units, min, max] |
---|
73 | self.details = {} |
---|
74 | self.details['effect_radius'] = ['[A]', None, None] |
---|
75 | self.details['charge'] = ['', None, None] |
---|
76 | self.details['volfraction'] = ['', None, None] |
---|
77 | self.details['temperature'] = ['[K]', None, None] |
---|
78 | self.details['saltconc'] = ['[M]', None, None] |
---|
79 | self.details['dielectconst'] = ['', None, None] |
---|
80 | |
---|
81 | ## fittable parameters |
---|
82 | self.fixed=['effect_radius.width'] |
---|
83 | |
---|
84 | ## non-fittable parameters |
---|
85 | self.non_fittable=[] |
---|
86 | |
---|
87 | ## parameters with orientation |
---|
88 | self.orientation_params =[] |
---|
89 | |
---|
90 | def clone(self): |
---|
91 | """ Return a identical copy of self """ |
---|
92 | return self._clone(HayterMSAStructure()) |
---|
93 | |
---|
94 | def __getstate__(self): |
---|
95 | """ |
---|
96 | return object state for pickling and copying |
---|
97 | """ |
---|
98 | model_state = {'params': self.params, 'dispersion': self.dispersion, 'log': self.log} |
---|
99 | |
---|
100 | return self.__dict__, model_state |
---|
101 | |
---|
102 | def __setstate__(self, state): |
---|
103 | """ |
---|
104 | create object from pickled state |
---|
105 | |
---|
106 | :param state: the state of the current model |
---|
107 | |
---|
108 | """ |
---|
109 | |
---|
110 | self.__dict__, model_state = state |
---|
111 | self.params = model_state['params'] |
---|
112 | self.dispersion = model_state['dispersion'] |
---|
113 | self.log = model_state['log'] |
---|
114 | |
---|
115 | |
---|
116 | def run(self, x=0.0): |
---|
117 | """ |
---|
118 | Evaluate the model |
---|
119 | |
---|
120 | :param x: input q, or [q,phi] |
---|
121 | |
---|
122 | :return: scattering function P(q) |
---|
123 | |
---|
124 | """ |
---|
125 | |
---|
126 | return CHayterMSAStructure.run(self, x) |
---|
127 | |
---|
128 | def runXY(self, x=0.0): |
---|
129 | """ |
---|
130 | Evaluate the model in cartesian coordinates |
---|
131 | |
---|
132 | :param x: input q, or [qx, qy] |
---|
133 | |
---|
134 | :return: scattering function P(q) |
---|
135 | |
---|
136 | """ |
---|
137 | |
---|
138 | return CHayterMSAStructure.runXY(self, x) |
---|
139 | |
---|
140 | def evalDistribution(self, x=[]): |
---|
141 | """ |
---|
142 | Evaluate the model in cartesian coordinates |
---|
143 | |
---|
144 | :param x: input q[], or [qx[], qy[]] |
---|
145 | |
---|
146 | :return: scattering function P(q[]) |
---|
147 | |
---|
148 | """ |
---|
149 | return CHayterMSAStructure.evalDistribution(self, x) |
---|
150 | |
---|
151 | def calculate_ER(self): |
---|
152 | """ |
---|
153 | Calculate the effective radius for P(q)*S(q) |
---|
154 | |
---|
155 | :return: the value of the effective radius |
---|
156 | |
---|
157 | """ |
---|
158 | return CHayterMSAStructure.calculate_ER(self) |
---|
159 | |
---|
160 | def set_dispersion(self, parameter, dispersion): |
---|
161 | """ |
---|
162 | Set the dispersion object for a model parameter |
---|
163 | |
---|
164 | :param parameter: name of the parameter [string] |
---|
165 | :param dispersion: dispersion object of type DispersionModel |
---|
166 | |
---|
167 | """ |
---|
168 | return CHayterMSAStructure.set_dispersion(self, parameter, dispersion.cdisp) |
---|
169 | |
---|
170 | |
---|
171 | # End of file |
---|