source: sasview/src/sas/sasgui/perspectives/fitting/model_thread.py @ 3a3f192

ESS_GUI_bumps_abstraction
Last change on this file since 3a3f192 was fa81e94, checked in by Piotr Rozyczko <rozyczko@…>, 6 years ago

Initial commit of the P(r) inversion perspective.
Code merged from Jeff Krzywon's ESS_GUI_Pr branch.
Also, minor 2to3 mods to sascalc/sasgui to enble error free setup.

  • Property mode set to 100755
File size: 11.6 KB
RevLine 
[f32d144]1"""
2    Calculation thread for modeling
3"""
[5062bbf]4
[bb18ef1]5import time
[9a5097c]6import numpy as np
[7e7e806]7import math
[b699768]8from sas.sascalc.data_util.calcthread import CalcThread
[ca4d985]9from sas.sascalc.fit.MultiplicationModel import MultiplicationModel
[5062bbf]10
[bb18ef1]11class Calc2D(CalcThread):
12    """
[5062bbf]13    Compute 2D model
14    This calculation assumes a 2-fold symmetry of the model
15    where points are computed for one half of the detector
16    and I(qx, qy) = I(-qx, -qy) is assumed.
[bb18ef1]17    """
[f32d144]18    def __init__(self, data, model, smearer, qmin, qmax, page_id,
[5ef55d2]19                 state=None,
[62f851f]20                 weight=None,
[f64a4b7]21                 fid=None,
[fa65e99]22                 toggle_mode_on=False,
[7e7e806]23                 completefn=None,
24                 updatefn=None,
[2296316]25                 update_chisqr=True,
[e3f6ef5]26                 source='model',
[7e7e806]27                 yieldtime=0.04,
[934ce649]28                 worktime=0.04,
29                 exception_handler=None,
[bb18ef1]30                 ):
[934ce649]31        CalcThread.__init__(self, completefn, updatefn, yieldtime, worktime,
32                            exception_handler=exception_handler)
[7e7e806]33        self.qmin = qmin
34        self.qmax = qmax
[62f851f]35        self.weight = weight
[f64a4b7]36        self.fid = fid
[7e7e806]37        #self.qstep = qstep
[fa65e99]38        self.toggle_mode_on = toggle_mode_on
[7e7e806]39        self.data = data
[66ff250]40        self.page_id = page_id
[5ef55d2]41        self.state = None
[1b001a7]42        # the model on to calculate
[bb18ef1]43        self.model = model
[7e7e806]44        self.smearer = smearer
[f32d144]45        self.starttime = 0
[2296316]46        self.update_chisqr = update_chisqr
[e3f6ef5]47        self.source = source
[2f4b430]48
[bb18ef1]49    def compute(self):
50        """
[5062bbf]51        Compute the data given a model function
[bb18ef1]52        """
[1b001a7]53        self.starttime = time.time()
54        # Determine appropriate q range
[235f514]55        if self.qmin is None:
[c77d859]56            self.qmin = 0
[235f514]57        if self.qmax is None:
[7432acb]58            if self.data is not None:
[7e7e806]59                newx = math.pow(max(math.fabs(self.data.xmax),
60                                   math.fabs(self.data.xmin)), 2)
61                newy = math.pow(max(math.fabs(self.data.ymax),
62                                   math.fabs(self.data.ymin)), 2)
63                self.qmax = math.sqrt(newx + newy)
[2f4b430]64
[7e7e806]65        if self.data is None:
[f32d144]66            msg = "Compute Calc2D receive data = %s.\n" % str(self.data)
[fa81e94]67            raise ValueError(msg)
[2f4b430]68
[f32d144]69        # Define matrix where data will be plotted
[9a5097c]70        radius = np.sqrt((self.data.qx_data * self.data.qx_data) + \
[7e7e806]71                    (self.data.qy_data * self.data.qy_data))
[43e685d]72
[e575db9]73        # For theory, qmax is based on 1d qmax
74        # so that must be mulitified by sqrt(2) to get actual max for 2d
[7e7e806]75        index_model = (self.qmin <= radius) & (radius <= self.qmax)
76        index_model = index_model & self.data.mask
[9a5097c]77        index_model = index_model & np.isfinite(self.data.data)
[2f4b430]78
[7e7e806]79        if self.smearer is not None:
[f72333f]80            # Set smearer w/ data, model and index.
81            fn = self.smearer
82            fn.set_model(self.model)
83            fn.set_index(index_model)
[f32d144]84            # Calculate smeared Intensity
[7e7e806]85            #(by Gaussian averaging): DataLoader/smearing2d/Smearer2D()
[f72333f]86            value = fn.get_value()
[f32d144]87        else:
[f72333f]88            # calculation w/o smearing
[d3911e3]89            value = self.model.evalDistribution([
90                self.data.qx_data[index_model],
91                self.data.qy_data[index_model]
92            ])
[9a5097c]93        output = np.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
[cbcdd2c]101        #self.complete(image=output,
102        #               data=self.data,
103        #               page_id=self.page_id,
104        #               model=self.model,
105        #               state=self.state,
106        #               toggle_mode_on=self.toggle_mode_on,
107        #               elapsed=elapsed,
108        #               index=index_model,
109        #               fid=self.fid,
110        #               qmin=self.qmin,
111        #               qmax=self.qmax,
112        #               weight=self.weight,
113        #               #qstep=self.qstep,
114        #               update_chisqr=self.update_chisqr,
115        #               source=self.source)
116        return (output,
117                self.data,
118                self.page_id,
119                self.model,
120                self.state,
121                self.toggle_mode_on,
122                elapsed,
123                index_model,
124                self.fid,
125                self.qmin,
126                self.qmax,
127                self.weight,
128                self.update_chisqr,
129                self.source)
[2f4b430]130
[bb18ef1]131
132class Calc1D(CalcThread):
[5062bbf]133    """
134    Compute 1D data
135    """
[7e7e806]136    def __init__(self, model,
[66ff250]137                 page_id,
[7e7e806]138                 data,
[f64a4b7]139                 fid=None,
[bb18ef1]140                 qmin=None,
141                 qmax=None,
[62f851f]142                 weight=None,
[bb18ef1]143                 smearer=None,
[fa65e99]144                 toggle_mode_on=False,
[5ef55d2]145                 state=None,
[f32d144]146                 completefn=None,
[2296316]147                 update_chisqr=True,
[e3f6ef5]148                 source='model',
[7e7e806]149                 updatefn=None,
150                 yieldtime=0.01,
[934ce649]151                 worktime=0.01,
152                 exception_handler=None,
[bb18ef1]153                 ):
[5062bbf]154        """
155        """
[934ce649]156        CalcThread.__init__(self, completefn, updatefn, yieldtime, worktime,
157                            exception_handler=exception_handler)
[f64a4b7]158        self.fid = fid
[fa65e99]159        self.data = data
160        self.qmin = qmin
161        self.qmax = qmax
[bb18ef1]162        self.model = model
[62f851f]163        self.weight = weight
[fa65e99]164        self.toggle_mode_on = toggle_mode_on
[5ef55d2]165        self.state = state
[66ff250]166        self.page_id = page_id
[fa65e99]167        self.smearer = smearer
[bb18ef1]168        self.starttime = 0
[2296316]169        self.update_chisqr = update_chisqr
[e3f6ef5]170        self.source = source
[da7cacb]171        self.out = None
172        self.index = None
[2f4b430]173
[bb18ef1]174    def compute(self):
[c77d859]175        """
[f32d144]176        Compute model 1d value given qmin , qmax , x value
[c77d859]177        """
[bb18ef1]178        self.starttime = time.time()
[9a5097c]179        output = np.zeros((len(self.data.x)))
[f32d144]180        index = (self.qmin <= self.data.x) & (self.data.x <= self.qmax)
[2f4b430]181
[c807957]182        # If we use a smearer, also return the unsmeared model
[804fefa]183        unsmeared_output = None
184        unsmeared_data = None
185        unsmeared_error = None
[f32d144]186        ##smearer the ouput of the plot
[7e7e806]187        if self.smearer is not None:
[f32d144]188            first_bin, last_bin = self.smearer.get_bin_range(self.qmin,
[7e7e806]189                                                             self.qmax)
[a3f125f0]190            mask = self.data.x[first_bin:last_bin+1]
[9a5097c]191            unsmeared_output = np.zeros((len(self.data.x)))
[804fefa]192            unsmeared_output[first_bin:last_bin+1] = self.model.evalDistribution(mask)
[c1c9929]193            self.smearer.model = self.model
[804fefa]194            output = self.smearer(unsmeared_output, first_bin, last_bin)
[286c757]195
[804fefa]196            # Rescale data to unsmeared model
[286c757]197            # Check that the arrays are compatible. If we only have a model but no data,
198            # the length of data.y will be zero.
[9a5097c]199            if isinstance(self.data.y, np.ndarray) and output.shape == self.data.y.shape:
200                unsmeared_data = np.zeros((len(self.data.x)))
201                unsmeared_error = np.zeros((len(self.data.x)))
[286c757]202                unsmeared_data[first_bin:last_bin+1] = self.data.y[first_bin:last_bin+1]\
203                                                        * unsmeared_output[first_bin:last_bin+1]\
204                                                        / output[first_bin:last_bin+1]
205                unsmeared_error[first_bin:last_bin+1] = self.data.dy[first_bin:last_bin+1]\
206                                                        * unsmeared_output[first_bin:last_bin+1]\
207                                                        / output[first_bin:last_bin+1]
208                unsmeared_output=unsmeared_output[index]
209                unsmeared_data=unsmeared_data[index]
210                unsmeared_error=unsmeared_error
[e627f19]211        else:
[7e7e806]212            output[index] = self.model.evalDistribution(self.data.x[index])
[2f4b430]213
[b0bebdc]214        sq_values = None
215        pq_values = None
216        s_model = None
217        p_model = None
[ca4d985]218        if isinstance(self.model, MultiplicationModel):
[b0bebdc]219            s_model = self.model.s_model
220            p_model = self.model.p_model
[c1681ea]221        elif hasattr(self.model, "get_composition_models"):
[b0bebdc]222            p_model, s_model = self.model.get_composition_models()
223
224        if p_model is not None and s_model is not None:
[9a5097c]225            sq_values = np.zeros((len(self.data.x)))
226            pq_values = np.zeros((len(self.data.x)))
[b0bebdc]227            sq_values[index] = s_model.evalDistribution(self.data.x[index])
228            pq_values[index] = p_model.evalDistribution(self.data.x[index])
[ca4d985]229
[5062bbf]230        elapsed = time.time() - self.starttime
[2f4b430]231
[cbcdd2c]232        #self.complete(x=self.data.x[index], y=output[index],
233        #              page_id=self.page_id,
234        #              state=self.state,
235        #              weight=self.weight,
236        #              fid=self.fid,
237        #              toggle_mode_on=self.toggle_mode_on,
238        #              elapsed=elapsed, index=index, model=self.model,
239        #              data=self.data,
240        #              update_chisqr=self.update_chisqr,
241        #              source=self.source)
242        return (self.data.x[index], output[index],
243                self.page_id,
244                self.state,
245                self.weight,
246                self.fid,
247                self.toggle_mode_on,
248                elapsed, index, self.model,
249                self.data,
250                self.update_chisqr,
251                self.source)
[2f4b430]252
[9687d58]253        # TODO: as of 4.1, the output contains more items:
254        # unsmeared_* and pq_model/sq_model
255        # Need to add these too
256
257        #self.complete(x=self.data.x[index], y=output[index],
258        #              page_id=self.page_id,
259        #              state=self.state,
260        #              weight=self.weight,
261        #              fid=self.fid,
262        #              toggle_mode_on=self.toggle_mode_on,
263        #              elapsed=elapsed, index=index, model=self.model,
264        #              data=self.data,
265        #              update_chisqr=self.update_chisqr,
266        #              source=self.source,
267        #              unsmeared_model=unsmeared_output,
268        #              unsmeared_data=unsmeared_data,
269        #              unsmeared_error=unsmeared_error,
270        #              pq_model=pq_values,
271        #              sq_model=sq_values)
[2f4b430]272
[f72333f]273    def results(self):
274        """
[5062bbf]275        Send resuts of the computation
[f72333f]276        """
277        return [self.out, self.index]
[5062bbf]278
279"""
280Example: ::
[2f4b430]281
[5062bbf]282    class CalcCommandline:
283        def __init__(self, n=20000):
284            #print thread.get_ident()
[79492222]285            from sas.models.CylinderModel import CylinderModel
[2f4b430]286
[5062bbf]287            model = CylinderModel()
[2f4b430]288
289
[5062bbf]290            print model.runXY([0.01, 0.02])
[2f4b430]291
[5062bbf]292            qmax = 0.01
293            qstep = 0.0001
294            self.done = False
[2f4b430]295
[5062bbf]296            x = numpy.arange(-qmax, qmax+qstep*0.01, qstep)
297            y = numpy.arange(-qmax, qmax+qstep*0.01, qstep)
[2f4b430]298
299
[5062bbf]300            calc_thread_2D = Calc2D(x, y, None, model.clone(),None,
301                                    -qmax, qmax,qstep,
302                                            completefn=self.complete,
303                                            updatefn=self.update ,
304                                            yieldtime=0.0)
[2f4b430]305
[5062bbf]306            calc_thread_2D.queue()
307            calc_thread_2D.ready(2.5)
[2f4b430]308
[5062bbf]309            while not self.done:
310                time.sleep(1)
[2f4b430]311
[5062bbf]312        def update(self,output):
313            print "update"
[2f4b430]314
[5062bbf]315        def complete(self, image, data, model, elapsed, qmin, qmax,index, qstep ):
316            print "complete"
317            self.done = True
[2f4b430]318
[5062bbf]319    if __name__ == "__main__":
320        CalcCommandline()
[f32d144]321"""
Note: See TracBrowser for help on using the repository browser.