source: sasview/src/sas/sasgui/perspectives/fitting/model_thread.py @ b2a3814

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since b2a3814 was ca4d985, checked in by Mathieu Doucet <doucetm@…>, 8 years ago

S(q), P(q) plots. Fixes #209

  • Property mode set to 100644
File size: 9.7 KB
Line 
1"""
2    Calculation thread for modeling
3"""
4
5import time
6import numpy
7import math
8from sas.sascalc.data_util.calcthread import CalcThread
9from sas.sascalc.fit.MultiplicationModel import MultiplicationModel
10
11class Calc2D(CalcThread):
12    """
13    Compute 2D model
14    This calculation assumes a 2-fold symmetry of the model
15    where points are computed for one half of the detector
16    and I(qx, qy) = I(-qx, -qy) is assumed.
17    """
18    def __init__(self, data, model, smearer, qmin, qmax, page_id,
19                 state=None,
20                 weight=None,
21                 fid=None,
22                 toggle_mode_on=False,
23                 completefn=None,
24                 updatefn=None,
25                 update_chisqr=True,
26                 source='model',
27                 yieldtime=0.04,
28                 worktime=0.04,
29                 exception_handler=None,
30                 ):
31        CalcThread.__init__(self, completefn, updatefn, yieldtime, worktime,
32                            exception_handler=exception_handler)
33        self.qmin = qmin
34        self.qmax = qmax
35        self.weight = weight
36        self.fid = fid
37        #self.qstep = qstep
38        self.toggle_mode_on = toggle_mode_on
39        self.data = data
40        self.page_id = page_id
41        self.state = None
42        # the model on to calculate
43        self.model = model
44        self.smearer = smearer
45        self.starttime = 0
46        self.update_chisqr = update_chisqr
47        self.source = source
48
49    def compute(self):
50        """
51        Compute the data given a model function
52        """
53        self.starttime = time.time()
54        # Determine appropriate q range
55        if self.qmin == None:
56            self.qmin = 0
57        if self.qmax == None:
58            if self.data != None:
59                newx = math.pow(max(math.fabs(self.data.xmax),
60                                   math.fabs(self.data.xmin)), 2)
61                newy = math.pow(max(math.fabs(self.data.ymax),
62                                   math.fabs(self.data.ymin)), 2)
63                self.qmax = math.sqrt(newx + newy)
64
65        if self.data is None:
66            msg = "Compute Calc2D receive data = %s.\n" % str(self.data)
67            raise ValueError, msg
68
69        # Define matrix where data will be plotted
70        radius = numpy.sqrt((self.data.qx_data * self.data.qx_data) + \
71                    (self.data.qy_data * self.data.qy_data))
72
73        # For theory, qmax is based on 1d qmax
74        # so that must be mulitified by sqrt(2) to get actual max for 2d
75        index_model = (self.qmin <= radius) & (radius <= self.qmax)
76        index_model = index_model & self.data.mask
77        index_model = index_model & numpy.isfinite(self.data.data)
78
79        if self.smearer is not None:
80            # Set smearer w/ data, model and index.
81            fn = self.smearer
82            fn.set_model(self.model)
83            fn.set_index(index_model)
84            # Get necessary data from self.data and set the data for smearing
85            fn.get_data()
86            # Calculate smeared Intensity
87            #(by Gaussian averaging): DataLoader/smearing2d/Smearer2D()
88            value = fn.get_value()
89        else:
90            # calculation w/o smearing
91            value = self.model.evalDistribution(\
92                [self.data.qx_data[index_model],
93                 self.data.qy_data[index_model]])
94        output = numpy.zeros(len(self.data.qx_data))
95        # output default is None
96        # This method is to distinguish between masked
97        #point(nan) and data point = 0.
98        output = output / output
99        # set value for self.mask==True, else still None to Plottools
100        output[index_model] = value
101        elapsed = time.time() - self.starttime
102        self.complete(image=output,
103                       data=self.data,
104                       page_id=self.page_id,
105                       model=self.model,
106                       state=self.state,
107                       toggle_mode_on=self.toggle_mode_on,
108                       elapsed=elapsed,
109                       index=index_model,
110                       fid=self.fid,
111                       qmin=self.qmin,
112                       qmax=self.qmax,
113                       weight=self.weight,
114                       #qstep=self.qstep,
115                       update_chisqr=self.update_chisqr,
116                       source=self.source)
117
118
119class Calc1D(CalcThread):
120    """
121    Compute 1D data
122    """
123    def __init__(self, model,
124                 page_id,
125                 data,
126                 fid=None,
127                 qmin=None,
128                 qmax=None,
129                 weight=None,
130                 smearer=None,
131                 toggle_mode_on=False,
132                 state=None,
133                 completefn=None,
134                 update_chisqr=True,
135                 source='model',
136                 updatefn=None,
137                 yieldtime=0.01,
138                 worktime=0.01,
139                 exception_handler=None,
140                 ):
141        """
142        """
143        CalcThread.__init__(self, completefn, updatefn, yieldtime, worktime,
144                            exception_handler=exception_handler)
145        self.fid = fid
146        self.data = data
147        self.qmin = qmin
148        self.qmax = qmax
149        self.model = model
150        self.weight = weight
151        self.toggle_mode_on = toggle_mode_on
152        self.state = state
153        self.page_id = page_id
154        self.smearer = smearer
155        self.starttime = 0
156        self.update_chisqr = update_chisqr
157        self.source = source
158        self.out = None
159        self.index = None
160
161    def compute(self):
162        """
163        Compute model 1d value given qmin , qmax , x value
164        """
165        self.starttime = time.time()
166        output = numpy.zeros((len(self.data.x)))
167        index = (self.qmin <= self.data.x) & (self.data.x <= self.qmax)
168
169        # If we use a smearer, also return the unsmeared model
170        unsmeared_output = None
171        unsmeared_data = None
172        unsmeared_error = None
173        ##smearer the ouput of the plot
174        if self.smearer is not None:
175            first_bin, last_bin = self.smearer.get_bin_range(self.qmin,
176                                                             self.qmax)
177            mask = self.data.x[first_bin:last_bin+1]
178            unsmeared_output = numpy.zeros((len(self.data.x)))
179            unsmeared_output[first_bin:last_bin+1] = self.model.evalDistribution(mask)
180            output = self.smearer(unsmeared_output, first_bin, last_bin)
181           
182            # Rescale data to unsmeared model
183            unsmeared_data = numpy.zeros((len(self.data.x)))
184            unsmeared_error = numpy.zeros((len(self.data.x)))
185            unsmeared_data[first_bin:last_bin+1] = self.data.y[first_bin:last_bin+1]\
186                                                    * unsmeared_output[first_bin:last_bin+1]\
187                                                    / output[first_bin:last_bin+1]
188            unsmeared_error[first_bin:last_bin+1] = self.data.dy[first_bin:last_bin+1]\
189                                                    * unsmeared_output[first_bin:last_bin+1]\
190                                                    / output[first_bin:last_bin+1]
191            unsmeared_output=unsmeared_output[index]
192            unsmeared_data=unsmeared_data[index]
193            unsmeared_error=unsmeared_error
194        else:
195            output[index] = self.model.evalDistribution(self.data.x[index])
196
197        sq_model = None
198        pq_model = None
199        if isinstance(self.model, MultiplicationModel):
200            sq_model = numpy.zeros((len(self.data.x)))
201            pq_model = numpy.zeros((len(self.data.x)))
202            sq_model[index] = self.model.s_model.evalDistribution(self.data.x[index])
203            pq_model[index] = self.model.p_model.evalDistribution(self.data.x[index])
204
205        elapsed = time.time() - self.starttime
206
207        self.complete(x=self.data.x[index], y=output[index],
208                      page_id=self.page_id,
209                      state=self.state,
210                      weight=self.weight,
211                      fid=self.fid,
212                      toggle_mode_on=self.toggle_mode_on,
213                      elapsed=elapsed, index=index, model=self.model,
214                      data=self.data,
215                      update_chisqr=self.update_chisqr,
216                      source=self.source,
217                      unsmeared_model=unsmeared_output,
218                      unsmeared_data=unsmeared_data,
219                      unsmeared_error=unsmeared_error,
220                      pq_model=pq_model,
221                      sq_model=sq_model)
222
223    def results(self):
224        """
225        Send resuts of the computation
226        """
227        return [self.out, self.index]
228
229"""
230Example: ::
231
232    class CalcCommandline:
233        def __init__(self, n=20000):
234            #print thread.get_ident()
235            from sas.models.CylinderModel import CylinderModel
236
237            model = CylinderModel()
238
239
240            print model.runXY([0.01, 0.02])
241
242            qmax = 0.01
243            qstep = 0.0001
244            self.done = False
245
246            x = numpy.arange(-qmax, qmax+qstep*0.01, qstep)
247            y = numpy.arange(-qmax, qmax+qstep*0.01, qstep)
248
249
250            calc_thread_2D = Calc2D(x, y, None, model.clone(),None,
251                                    -qmax, qmax,qstep,
252                                            completefn=self.complete,
253                                            updatefn=self.update ,
254                                            yieldtime=0.0)
255
256            calc_thread_2D.queue()
257            calc_thread_2D.ready(2.5)
258
259            while not self.done:
260                time.sleep(1)
261
262        def update(self,output):
263            print "update"
264
265        def complete(self, image, data, model, elapsed, qmin, qmax,index, qstep ):
266            print "complete"
267            self.done = True
268
269    if __name__ == "__main__":
270        CalcCommandline()
271"""
Note: See TracBrowser for help on using the repository browser.