source: sasview/sansview/perspectives/fitting/gui_thread.py @ 71f0373

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 71f0373 was 6dd2be3, checked in by Jae Cho <jhjcho@…>, 15 years ago

minor correction in cal. of chisqr

  • Property mode set to 100644
File size: 5.6 KB
Line 
1
2
3import time
4import numpy
5import copy
6import math
7import sys
8import wx
9
10from calcthread import CalcThread
11
12class CalcChisqr1D(CalcThread):
13    """
14       Compute chisqr
15    """
16    def __init__(self, x, y,dy, model,
17                 smearer=None,
18                 qmin=None,
19                 qmax=None,
20                 completefn = None,
21                 updatefn   = None,
22                 yieldtime  = 0.01,
23                 worktime   = 0.01
24                 ):
25        CalcThread.__init__(self,completefn,
26                 updatefn,
27                 yieldtime,
28                 worktime)
29        self.smearer =smearer
30        self.y = numpy.array(y)
31        self.x = numpy.array(x)
32        self.dy= copy.deepcopy(dy)
33        self.model = model
34        self.qmin = qmin
35        self.qmax = qmax
36        self.smearer = smearer
37        self.starttime = 0 
38       
39    def isquit(self):
40        """
41             @raise KeyboardInterrupt: when the thread is interrupted
42        """
43        try:
44            CalcThread.isquit(self)
45        except KeyboardInterrupt:
46            raise KeyboardInterrupt   
47       
48       
49    def compute(self):
50        """
51            Compute the data given a model function
52        """
53        self.starttime = time.time()
54       
55        x,y = [numpy.asarray(v) for v in (self.x,self.y)]
56        if self.dy==None or self.dy==[]:
57            self.dy= numpy.zeros(len(self.y))
58        self.dy[self.dy==0]=1
59       
60        if self.qmin==0.0 and not numpy.isfinite(self.y[self.qmin]):
61            self.qmin = min(self.x[sel.x!=0])     
62        elif self.qmin==None:
63            self.qmin= min(self.x)
64       
65        if self.qmax==None:
66            self.qmax= max(self.x)
67           
68        fx = numpy.zeros(len(self.x)) 
69       
70        output= None
71        res=[]
72        try: 
73           
74            for i_x in range(len(self.x)):
75               
76                # Check whether we need to bail out
77                self.isquit() 
78               
79                fx[i_x]=self.model.run(self.x[i_x])
80               
81            if self.smearer!=None:
82                fx= self.smearer(fx)
83               
84            for i_y in range(len(fx)):
85                # Check whether we need to bail out
86                self.isquit()   
87               
88                temp=(self.y[i_y] - fx[i_y])/self.dy[i_y]
89                res.append(temp*temp)
90            #sum of residuals
91            sum=0
92            for item in res:
93                # Check whether we need to bail out
94                self.isquit() 
95                if numpy.isfinite(item):
96                    sum +=item
97            output = sum/ len(res)
98            elapsed = time.time()-self.starttime
99            self.complete(output= output,  elapsed=elapsed)
100           
101        except KeyboardInterrupt:
102            # Thread was interrupted, just proceed and re-raise.
103            # Real code should not print, but this is an example...
104            raise
105        except:
106            raise
107       
108class CalcChisqr2D(CalcThread):
109    """
110       Compute chisqr
111    """
112   
113    def __init__(self, x_bins, y_bins,data,err_data, model,
114                 qmin,
115                 qmax,
116                 completefn = None,
117                 updatefn   = None,
118                 yieldtime  = 0.01,
119                 worktime   = 0.01
120                 ):
121        CalcThread.__init__(self,completefn,
122                 updatefn,
123                 yieldtime,
124                 worktime)
125     
126        self.y_bins = y_bins
127        self.x_bins = x_bins
128        self.data= data
129        self.err_data= copy.deepcopy(err_data)
130        self.model = model
131        self.qmin = qmin
132        self.qmax = qmax
133     
134        self.starttime = 0 
135       
136    def isquit(self):
137        """
138             @raise KeyboardInterrupt: when the thread is interrupted
139        """
140        try:
141            CalcThread.isquit(self)
142        except KeyboardInterrupt:
143            raise KeyboardInterrupt   
144       
145       
146    def compute(self):
147        """
148            Compute the data given a model function
149        """
150        self.starttime = time.time()
151        if self.err_data==None or self.err_data==[]:
152            self.err_data= numpy.zeros(len(self.x_bins),len(self.y_bins))
153           
154        self.err_data[self.err_data==0]=1
155           
156        output= None
157        res=[]
158        try:
159         
160            for i in range(len(self.x_bins)):
161                # Check whether we need to bail out
162                self.isquit()   
163                for j in range(len(self.y_bins)):
164                    #Check the range containing data between self.qmin_x and self.qmax_x
165                    value =  math.pow(self.x_bins[i],2)+ math.pow(self.y_bins[j],2)
166                    if value >= math.pow(self.qmin,2) and value <= math.pow(self.qmax,2):
167                       
168                        temp = [self.x_bins[i],self.y_bins[j]]
169                        error= self.err_data[j][i]
170                        chisqrji = (self.data[j][i]- self.model.runXY(temp ))/error
171                        #Vector containing residuals
172                        res.append( math.pow(chisqrji,2) )
173 
174            sum=0
175            for item in res:
176                # Check whether we need to bail out
177                self.isquit() 
178                if numpy.isfinite(item):
179                    sum +=item
180            output = sum/ len(res)
181            elapsed = time.time()-self.starttime
182            self.complete(output= output,  elapsed=elapsed)
183           
184        except KeyboardInterrupt:
185            # Thread was interrupted, just proceed and re-raise.
186            # Real code should not print, but this is an example...
187            raise
Note: See TracBrowser for help on using the repository browser.