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

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 e5c102c was 51a71a3, checked in by Jae Cho <jhjcho@…>, 14 years ago

added masking feature for 2D

  • Property mode set to 100644
File size: 6.5 KB
RevLine 
[bb18ef1]1import time
[e733619]2from data_util.calcthread import CalcThread
[bb18ef1]3import sys
[d16e396]4import numpy,math
[bb18ef1]5
6class Calc2D(CalcThread):
7    """
8        Compute 2D model
9        This calculation assumes a 2-fold symmetry of the model
10        where points are computed for one half of the detector
11        and I(qx, qy) = I(-qx, -qy) is assumed.
12    """
13   
[c77d859]14    def __init__(self, x, y, data,model,qmin, qmax,qstep,
[bb18ef1]15                 completefn = None,
16                 updatefn   = None,
17                 yieldtime  = 0.01,
18                 worktime   = 0.01
19                 ):
20        CalcThread.__init__(self,completefn,
21                 updatefn,
22                 yieldtime,
23                 worktime)
24        self.qmin= qmin
[c77d859]25        self.qmax= qmax
[bb18ef1]26        self.qstep= qstep
[e575db9]27
28        self.x = x
29        self.y = y
[c77d859]30        self.data= data
[1b001a7]31        # the model on to calculate
[bb18ef1]32        self.model = model
[904713c]33        self.starttime = 0 
[bb18ef1]34       
35    def compute(self):
36        """
37            Compute the data given a model function
38        """
[1b001a7]39        self.starttime = time.time()
40        # Determine appropriate q range
[c77d859]41        if self.qmin==None:
42            self.qmin = 0
43        if self.qmax== None:
[cd3d15b]44            if self.data !=None:
45                newx= math.pow(max(math.fabs(self.data.xmax),math.fabs(self.data.xmin)),2)
46                newy= math.pow(max(math.fabs(self.data.ymax),math.fabs(self.data.ymin)),2)
47                self.qmax=math.sqrt( newx + newy )
[e575db9]48       
49        if self.data != None:
[43e685d]50            self.I_data = self.data.data
[e575db9]51            self.qx_data = self.data.qx_data
52            self.qy_data = self.data.qy_data
53            self.mask    = self.data.mask
54        else:         
55            xbin =  numpy.linspace(start= -1*self.qmax,
56                                   stop= self.qmax,
57                                   num= self.qstep,
58                                   endpoint=True ) 
59            ybin = numpy.linspace(start= -1*self.qmax,
60                                   stop= self.qmax,
61                                   num= self.qstep,
62                                   endpoint=True )           
63           
64            new_xbin = numpy.tile(xbin, (len(ybin),1))
65            new_ybin = numpy.tile(ybin, (len(xbin),1))
66            new_ybin = new_ybin.swapaxes(0,1)
67            new_xbin = new_xbin.flatten()
68            new_ybin = new_ybin.flatten()
69            self.qy_data = new_ybin
70            self.qx_data = new_xbin
[43e685d]71            # fake data
72            self.I_data = numpy.ones(len(self.qx_data))
[e575db9]73           
74            self.mask = numpy.ones(len(self.qx_data),dtype=bool)
75           
76        # Define matrix where data will be plotted   
77        radius= numpy.sqrt( self.qx_data*self.qx_data + self.qy_data*self.qy_data )
78        index_data= (self.qmin<= radius)&(self.mask)
[43e685d]79
[e575db9]80        # For theory, qmax is based on 1d qmax
81        # so that must be mulitified by sqrt(2) to get actual max for 2d
82        index_model = ((self.qmin <= radius)&(radius<= self.qmax))
[51a71a3]83        index_model = (index_model)&(self.mask)
84        index_model = (index_model)&(numpy.isfinite(self.I_data))
[e575db9]85        if self.data ==None:
[d2caa18]86            # Only qmin value will be consider for the detector
[51a71a3]87            index_model = index_data 
[e575db9]88             
[51a71a3]89        value = self.model.evalDistribution([self.qx_data[index_model],self.qy_data[index_model]] )
[e575db9]90
[51a71a3]91        output = numpy.zeros(len(self.qx_data))
[43e685d]92       
93        # output default is None
94        # This method is to distinguish between masked point and data point = 0.
95        output = output/output
96        # set value for self.mask==True, else still None to Plottools
[51a71a3]97        output[index_model] = value
[1b001a7]98        elapsed = time.time()-self.starttime
99        self.complete( image = output,
100                       data = self.data , 
101                       model = self.model,
102                       elapsed = elapsed,
103                       qmin = self.qmin,
[e575db9]104                       qmax = self.qmax,
[1b001a7]105                       qstep = self.qstep )
106       
[785c8233]107   
[bb18ef1]108   
109
110class Calc1D(CalcThread):
111    """Compute 1D data"""
112   
113    def __init__(self, x, model,
114                 data=None,
115                 qmin=None,
116                 qmax=None,
117                 smearer=None,
118                 completefn = None,
119                 updatefn   = None,
120                 yieldtime  = 0.01,
121                 worktime   = 0.01
122                 ):
123        CalcThread.__init__(self,completefn,
124                 updatefn,
125                 yieldtime,
126                 worktime)
[1b001a7]127        self.x = numpy.array(x)
[bb18ef1]128        self.data= data
129        self.qmin= qmin
130        self.qmax= qmax
131        self.model = model
132        self.smearer= smearer
133        self.starttime = 0
134       
135    def compute(self):
[c77d859]136        """
137            Compute model 1d value given qmin , qmax , x value
138        """
[1b001a7]139       
[bb18ef1]140        self.starttime = time.time()
[cad821b]141        output = numpy.zeros((len(self.x)))
142        index= (self.qmin <= self.x)& (self.x <= self.qmax)
[bfe4644]143     
[fb8daaaf]144        ##smearer the ouput of the plot   
[bb18ef1]145        if self.smearer!=None:
[a0bc608]146            first_bin, last_bin = self.smearer.get_bin_range(self.qmin, self.qmax)
[e627f19]147            output[first_bin:last_bin] = self.model.evalDistribution(self.x[first_bin:last_bin])
[a0bc608]148            output = self.smearer(output, first_bin, last_bin) 
[e627f19]149        else:
150            output[index] = self.model.evalDistribution(self.x[index])
[bfe4644]151         
[bb18ef1]152        elapsed = time.time()-self.starttime
[785c8233]153       
[a0bc608]154        self.complete(x= self.x[index], y= output[index], 
[c77d859]155                      elapsed=elapsed, model= self.model, data=self.data)
[bb18ef1]156       
[785c8233]157 
[1b001a7]158               
[bb18ef1]159class CalcCommandline:
160    def __init__(self, n=20000):
161        #print thread.get_ident()
162        from sans.models.CylinderModel import CylinderModel
163       
[904713c]164        model = CylinderModel()
[bb18ef1]165       
166         
167        print model.runXY([0.01, 0.02])
168       
169        qmax = 0.01
170        qstep = 0.0001
171        self.done = False
172       
[904713c]173        x = numpy.arange(-qmax, qmax+qstep*0.01, qstep)
174        y = numpy.arange(-qmax, qmax+qstep*0.01, qstep)
175   
[bb18ef1]176   
[904713c]177        calc_thread_2D = Calc2D(x, y, None, model.clone(),-qmax, qmax,qstep,
[bb18ef1]178                                        completefn=self.complete,
179                                        updatefn=self.update ,
180                                        yieldtime=0.0)
181     
182        calc_thread_2D.queue()
183        calc_thread_2D.ready(2.5)
184       
185        while not self.done:
186            time.sleep(1)
187
188    def update(self,output):
189        print "update"
190
[904713c]191    def complete(self, image, data, model, elapsed, qmin, qmax, qstep ):
[bb18ef1]192        print "complete"
193        self.done = True
194
195if __name__ == "__main__":
196    CalcCommandline()
197   
Note: See TracBrowser for help on using the repository browser.