source: sasview/sansview/perspectives/fitting/model_thread.py @ 4225aed

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.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 4225aed was f6aee42, checked in by Jae Cho <jhjcho@…>, 13 years ago

give mac some sleep on computation: timing issue

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