source: sasview/src/sas/sasgui/perspectives/fitting/model_thread.py @ 804fefa

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.2ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 804fefa was 804fefa, checked in by Mathieu Doucet <doucetm@…>, 8 years ago

Add rescaled data (re #687)

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