source: sasview/sansview/perspectives/fitting/model_thread.py @ 58c6ba6

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 58c6ba6 was 6534d4d, checked in by Gervaise Alina <gervyh@…>, 15 years ago

fix compute for model1D

  • Property mode set to 100644
File size: 7.4 KB
Line 
1import time
2from data_util.calcthread import CalcThread
3import sys
4import numpy,math
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   
14    def __init__(self, x, y, data,model,qmin, qmax,qstep,
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
25        self.qmax= qmax
26        self.qstep= qstep
27        # Reshape dimensions of x and y to call evalDistribution
28        self.x_array = numpy.reshape(x,[1,len(x)])
29        self.y_array = numpy.reshape(y,[len(y),1])
30        # Numpy array of dimensions 1 used for model.run method
31        self.x= numpy.array(x)
32        self.y= numpy.array(y)
33        self.data= data
34        # the model on to calculate
35        self.model = model
36        self.starttime = 0 
37       
38    def compute(self):
39        """
40            Compute the data given a model function
41        """
42        self.starttime = time.time()
43        # Determine appropriate q range
44        if self.qmin==None:
45            self.qmin = 0
46        if self.qmax== None:
47            if self.data !=None:
48                newx= math.pow(max(math.fabs(self.data.xmax),math.fabs(self.data.xmin)),2)
49                newy= math.pow(max(math.fabs(self.data.ymax),math.fabs(self.data.ymin)),2)
50                self.qmax=math.sqrt( newx + newy )
51        # Define matrix where data will be plotted       
52        radius= numpy.sqrt(self.x_array**2 + self.y_array**2)
53        index_data= (self.qmin<= radius)
54        index_model = (self.qmin <= radius)&(radius<= self.qmax)
55       
56        try:
57            ## receive only list of 2 numpy array
58            ## One must reshape to vertical and the other to horizontal
59            value = self.model.evalDistribution([self.y_array,self.x_array] )
60            ## for data ignore the qmax
61            if self.data == None:
62                # Only qmin value will be consider for the detector
63                output = value *index_data 
64            else:
65                # The user can define qmin and qmax for the detector
66                output = value*index_model
67        except:
68            ## looping trough all x and y points
69            output= self.compute_point() 
70       
71        elapsed = time.time()-self.starttime
72        self.complete( image = output,
73                       data = self.data , 
74                       model = self.model,
75                       elapsed = elapsed,
76                       qmin = self.qmin,
77                       qmax =self.qmax,
78                       qstep = self.qstep )
79       
80    def compute_point(self):
81        """
82            Compute the data given a model function. Loop through each point
83            of x and y to compute the model
84            @return output : is a matrix of size x*y
85        """
86        output = numpy.zeros((len(self.x),len(self.y)))
87       
88        for i_x in range(len(self.x)):
89            # Check whether we need to bail out
90            self.update(output=output )
91            self.isquit()
92       
93            for i_y in range(int(len(self.y))):
94                radius = math.sqrt(self.x[i_x]*self.x[i_x]+self.y[i_y]*self.y[i_y])
95                ## for data ignore the qmax
96                if self.data == None:
97                    if  self.qmin <= radius :
98                        value = self.model.runXY( [self.x[i_x], self.y[i_y]] )
99                        output[i_y][i_x] =value   
100                    else:
101                        output[i_y][i_x] =0   
102                else: 
103                    if  self.qmin <= radius and radius<= self.qmax:
104                        value = self.model.runXY( [self.x[i_x], self.y[i_y]] )
105                        output[i_y][i_x] =value   
106                    else:
107                        output[i_y][i_x] =0 
108        return output
109     
110   
111
112class Calc1D(CalcThread):
113    """Compute 1D data"""
114   
115    def __init__(self, x, model,
116                 data=None,
117                 qmin=None,
118                 qmax=None,
119                 smearer=None,
120                 completefn = None,
121                 updatefn   = None,
122                 yieldtime  = 0.01,
123                 worktime   = 0.01
124                 ):
125        CalcThread.__init__(self,completefn,
126                 updatefn,
127                 yieldtime,
128                 worktime)
129        self.x = numpy.array(x)
130        self.data= data
131        self.qmin= qmin
132        self.qmax= qmax
133        self.model = model
134        self.smearer= smearer
135        self.starttime = 0
136       
137    def compute(self):
138        """
139            Compute model 1d value given qmin , qmax , x value
140        """
141       
142        self.starttime = time.time()
143       
144        try:
145            index= (self.qmin <= self.x)& (self.x <= self.qmax)
146            output = self.model.evalDistribution(self.x[index])
147        except:
148            output= self.compute_point()
149
150        ##smearer the ouput of the plot   
151        if self.smearer!=None:
152            output = self.smearer(output) #Todo: Why always output[0]=0???
153       
154        ######Temp. FIX for Qrange w/ smear. #ToDo: Should not pass all the data to 'run' or 'smear'...
155        new_index = (self.qmin > self.x) |(self.x > self.qmax)
156        output[new_index] = None
157               
158        elapsed = time.time()-self.starttime
159       
160        self.complete(x= self.x, y= output, 
161                      elapsed=elapsed, model= self.model, data=self.data)
162       
163    def compute_point(self):
164        """
165            Compute the data given a model function. Loop through each point
166            of x  compute the model
167            @return output : is a numpy vector of size x
168        """ 
169        output = numpy.zeros(len(self.x))     
170        # Loop through each q of data.x
171        for i_x in range(len(self.x)):
172            self.update(x= self.x, output=output )
173            # Check whether we need to bail out
174            self.isquit()
175            if self.qmin <= self.x[i_x] and self.x[i_x] <= self.qmax:
176                value = self.model.run(self.x[i_x])
177                output[i_x] = value
178               
179        return output
180               
181               
182class CalcCommandline:
183    def __init__(self, n=20000):
184        #print thread.get_ident()
185        from sans.models.CylinderModel import CylinderModel
186       
187        model = CylinderModel()
188       
189         
190        print model.runXY([0.01, 0.02])
191       
192        qmax = 0.01
193        qstep = 0.0001
194        self.done = False
195       
196        x = numpy.arange(-qmax, qmax+qstep*0.01, qstep)
197        y = numpy.arange(-qmax, qmax+qstep*0.01, qstep)
198   
199   
200        calc_thread_2D = Calc2D(x, y, None, model.clone(),-qmax, qmax,qstep,
201                                        completefn=self.complete,
202                                        updatefn=self.update ,
203                                        yieldtime=0.0)
204     
205        calc_thread_2D.queue()
206        calc_thread_2D.ready(2.5)
207       
208        while not self.done:
209            time.sleep(1)
210
211    def update(self,output):
212        print "update"
213
214    def complete(self, image, data, model, elapsed, qmin, qmax, qstep ):
215        print "complete"
216        self.done = True
217
218if __name__ == "__main__":
219    CalcCommandline()
220   
Note: See TracBrowser for help on using the repository browser.