source: sasview/sansview/perspectives/fitting/model_thread.py @ c399004

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 c399004 was fa65e99, checked in by Gervaise Alina <gervyh@…>, 14 years ago

working on toggle1d \2d view

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