source: sasview/sansview/perspectives/fitting/model_thread.py @ 6e9150d

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 6e9150d was a0bc608, checked in by Mathieu Doucet <doucetm@…>, 15 years ago

sansview: fixed plotting for smeared data with restricted range.

  • Property mode set to 100644
File size: 5.4 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
[1b001a7]27        # Reshape dimensions of x and y to call evalDistribution
[d2caa18]28        #self.x_array = numpy.reshape(x,[len(x),1])
29        #self.y_array = numpy.reshape(y,[1,len(y)])
30        self.x_array = numpy.reshape(x,[1,len(x)])
31        self.y_array = numpy.reshape(y,[len(y),1])
[1b001a7]32        # Numpy array of dimensions 1 used for model.run method
33        self.x= numpy.array(x)
34        self.y= numpy.array(y)
[c77d859]35        self.data= data
[1b001a7]36        # the model on to calculate
[bb18ef1]37        self.model = model
[904713c]38        self.starttime = 0 
[bb18ef1]39       
40    def compute(self):
41        """
42            Compute the data given a model function
43        """
[1b001a7]44        self.starttime = time.time()
45        # Determine appropriate q range
[c77d859]46        if self.qmin==None:
47            self.qmin = 0
48        if self.qmax== None:
[cd3d15b]49            if self.data !=None:
50                newx= math.pow(max(math.fabs(self.data.xmax),math.fabs(self.data.xmin)),2)
51                newy= math.pow(max(math.fabs(self.data.ymax),math.fabs(self.data.ymin)),2)
52                self.qmax=math.sqrt( newx + newy )
[1b001a7]53        # Define matrix where data will be plotted       
[d2caa18]54        radius= numpy.sqrt( self.x_array**2 + self.y_array**2 )
[1b001a7]55        index_data= (self.qmin<= radius)
56        index_model = (self.qmin <= radius)&(radius<= self.qmax)
57       
[cad821b]58        output = numpy.zeros((len(self.x),len(self.y)))
[d2caa18]59     
60        ## receive only list of 2 numpy array
61        ## One must reshape to vertical and the other to horizontal
62        value = self.model.evalDistribution([self.x_array,self.y_array] )
63        ## for data ignore the qmax
64        if self.data == None:
65            # Only qmin value will be consider for the detector
66            output = value *index_data 
67        else:
68            # The user can define qmin and qmax for the detector
69            output = index_model*value
70     
[1b001a7]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       
[785c8233]80   
[bb18ef1]81   
82
83class Calc1D(CalcThread):
84    """Compute 1D data"""
85   
86    def __init__(self, x, model,
87                 data=None,
88                 qmin=None,
89                 qmax=None,
90                 smearer=None,
91                 completefn = None,
92                 updatefn   = None,
93                 yieldtime  = 0.01,
94                 worktime   = 0.01
95                 ):
96        CalcThread.__init__(self,completefn,
97                 updatefn,
98                 yieldtime,
99                 worktime)
[1b001a7]100        self.x = numpy.array(x)
[bb18ef1]101        self.data= data
102        self.qmin= qmin
103        self.qmax= qmax
104        self.model = model
105        self.smearer= smearer
106        self.starttime = 0
107       
108    def compute(self):
[c77d859]109        """
110            Compute model 1d value given qmin , qmax , x value
111        """
[1b001a7]112       
[bb18ef1]113        self.starttime = time.time()
[cad821b]114        output = numpy.zeros((len(self.x)))
115        index= (self.qmin <= self.x)& (self.x <= self.qmax)
116        output[index] = self.model.evalDistribution(self.x[index])
[bfe4644]117     
[fb8daaaf]118        ##smearer the ouput of the plot   
[bb18ef1]119        if self.smearer!=None:
[a0bc608]120            first_bin, last_bin = self.smearer.get_bin_range(self.qmin, self.qmax)
121            output = self.smearer(output, first_bin, last_bin) 
[bfe4644]122         
[bb18ef1]123        elapsed = time.time()-self.starttime
[785c8233]124       
[a0bc608]125        self.complete(x= self.x[index], y= output[index], 
[c77d859]126                      elapsed=elapsed, model= self.model, data=self.data)
[bb18ef1]127       
[785c8233]128 
[1b001a7]129               
[bb18ef1]130class CalcCommandline:
131    def __init__(self, n=20000):
132        #print thread.get_ident()
133        from sans.models.CylinderModel import CylinderModel
134       
[904713c]135        model = CylinderModel()
[bb18ef1]136       
137         
138        print model.runXY([0.01, 0.02])
139       
140        qmax = 0.01
141        qstep = 0.0001
142        self.done = False
143       
[904713c]144        x = numpy.arange(-qmax, qmax+qstep*0.01, qstep)
145        y = numpy.arange(-qmax, qmax+qstep*0.01, qstep)
146   
[bb18ef1]147   
[904713c]148        calc_thread_2D = Calc2D(x, y, None, model.clone(),-qmax, qmax,qstep,
[bb18ef1]149                                        completefn=self.complete,
150                                        updatefn=self.update ,
151                                        yieldtime=0.0)
152     
153        calc_thread_2D.queue()
154        calc_thread_2D.ready(2.5)
155       
156        while not self.done:
157            time.sleep(1)
158
159    def update(self,output):
160        print "update"
161
[904713c]162    def complete(self, image, data, model, elapsed, qmin, qmax, qstep ):
[bb18ef1]163        print "complete"
164        self.done = True
165
166if __name__ == "__main__":
167    CalcCommandline()
168   
Note: See TracBrowser for help on using the repository browser.