[fd1aec6f] | 1 | """ |
---|
[642b259] | 2 | #This software was developed by the University of Tennessee as part of the |
---|
| 3 | #Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 4 | #project funded by the US National Science Foundation. |
---|
| 5 | #See the license text in license.txt |
---|
[fd1aec6f] | 6 | """ |
---|
[04eb1a4] | 7 | import numpy |
---|
| 8 | import math |
---|
[87615a48] | 9 | |
---|
[642b259] | 10 | ## Singular point |
---|
| 11 | SIGMA_ZERO = 1.0e-010 |
---|
| 12 | ## Limit of how many sigmas to be covered for the Gaussian smearing |
---|
| 13 | # default: 2.5 to cover 98.7% of Gaussian |
---|
[d4bf55e9] | 14 | LIMIT = 3.0 |
---|
[642b259] | 15 | ## Defaults |
---|
[fd1aec6f] | 16 | R_BIN = {'Xhigh':10, 'High':5, 'Med':5, 'Low':3} |
---|
| 17 | PHI_BIN ={'Xhigh':20, 'High':12, 'Med':6, 'Low':4} |
---|
[642b259] | 18 | |
---|
| 19 | class Smearer2D: |
---|
| 20 | """ |
---|
[fd5ac0d] | 21 | Gaussian Q smearing class for SAS 2d data |
---|
[642b259] | 22 | """ |
---|
| 23 | |
---|
| 24 | def __init__(self, data=None, model=None, index=None, |
---|
[1aa8084] | 25 | limit=LIMIT, accuracy='Low', coords='polar', engine='c'): |
---|
[642b259] | 26 | """ |
---|
| 27 | Assumption: equally spaced bins in dq_r, dq_phi space. |
---|
| 28 | |
---|
| 29 | :param data: 2d data used to set the smearing parameters |
---|
| 30 | :param model: model function |
---|
[fd1aec6f] | 31 | :param index: 1d array with len(data) to define the range |
---|
| 32 | of the calculation: elements are given as True or False |
---|
[642b259] | 33 | :param nr: number of bins in dq_r-axis |
---|
| 34 | :param nphi: number of bins in dq_phi-axis |
---|
[d4bf55e9] | 35 | :param coord: coordinates [string], 'polar' or 'cartesian' |
---|
[87615a48] | 36 | :param engine: engine name [string]; 'c' or 'numpy' |
---|
[642b259] | 37 | """ |
---|
| 38 | ## data |
---|
| 39 | self.data = data |
---|
| 40 | ## model |
---|
| 41 | self.model = model |
---|
[fd1aec6f] | 42 | ## Accuracy: Higher stands for more sampling points in both directions |
---|
| 43 | ## of r and phi. |
---|
[642b259] | 44 | self.accuracy = accuracy |
---|
| 45 | ## number of bins in r axis for over-sampling |
---|
| 46 | self.nr = R_BIN |
---|
| 47 | ## number of bins in phi axis for over-sampling |
---|
| 48 | self.nphi = PHI_BIN |
---|
| 49 | ## maximum nsigmas |
---|
| 50 | self.limit = limit |
---|
| 51 | self.index = index |
---|
[d4bf55e9] | 52 | self.coords = coords |
---|
[642b259] | 53 | self.smearer = True |
---|
[87615a48] | 54 | self._engine = engine |
---|
[fd1aec6f] | 55 | self.qx_data = None |
---|
| 56 | self.qy_data = None |
---|
| 57 | self.q_data = None |
---|
| 58 | # dqx and dqy mean dq_parr and dq_perp |
---|
| 59 | self.dqx_data = None |
---|
| 60 | self.dqy_data = None |
---|
| 61 | self.phi_data = None |
---|
[642b259] | 62 | |
---|
| 63 | def get_data(self): |
---|
| 64 | """ |
---|
[fd1aec6f] | 65 | Get qx_data, qy_data, dqx_data,dqy_data, |
---|
| 66 | and calculate phi_data=arctan(qx_data/qy_data) |
---|
[642b259] | 67 | """ |
---|
| 68 | if self.data == None or self.data.__class__.__name__ == 'Data1D': |
---|
| 69 | return None |
---|
| 70 | if self.data.dqx_data == None or self.data.dqy_data == None: |
---|
| 71 | return None |
---|
| 72 | self.qx_data = self.data.qx_data[self.index] |
---|
| 73 | self.qy_data = self.data.qy_data[self.index] |
---|
[d4bf55e9] | 74 | self.q_data = self.data.q_data[self.index] |
---|
| 75 | # Here dqx and dqy mean dq_parr and dq_perp |
---|
[642b259] | 76 | self.dqx_data = self.data.dqx_data[self.index] |
---|
| 77 | self.dqy_data = self.data.dqy_data[self.index] |
---|
[fd1aec6f] | 78 | self.phi_data = numpy.arctan(self.qx_data / self.qy_data) |
---|
[642b259] | 79 | ## Remove singular points if exists |
---|
[fd1aec6f] | 80 | self.dqx_data[self.dqx_data < SIGMA_ZERO] = SIGMA_ZERO |
---|
| 81 | self.dqy_data[self.dqy_data < SIGMA_ZERO] = SIGMA_ZERO |
---|
[642b259] | 82 | return True |
---|
| 83 | |
---|
| 84 | def set_accuracy(self, accuracy='Low'): |
---|
| 85 | """ |
---|
| 86 | Set accuracy. |
---|
| 87 | |
---|
| 88 | :param accuracy: string |
---|
| 89 | """ |
---|
| 90 | self.accuracy = accuracy |
---|
| 91 | |
---|
| 92 | def set_smearer(self, smearer=True): |
---|
| 93 | """ |
---|
| 94 | Set whether or not smearer will be used |
---|
| 95 | |
---|
| 96 | :param smearer: smear object |
---|
| 97 | |
---|
| 98 | """ |
---|
| 99 | self.smearer = smearer |
---|
| 100 | |
---|
| 101 | def set_data(self, data=None): |
---|
| 102 | """ |
---|
| 103 | Set data. |
---|
| 104 | |
---|
| 105 | :param data: DataLoader.Data_info type |
---|
| 106 | """ |
---|
| 107 | self.data = data |
---|
| 108 | |
---|
| 109 | |
---|
| 110 | def set_model(self, model=None): |
---|
| 111 | """ |
---|
| 112 | Set model. |
---|
| 113 | |
---|
[79492222] | 114 | :param model: sas.models instance |
---|
[642b259] | 115 | """ |
---|
| 116 | self.model = model |
---|
| 117 | |
---|
| 118 | def set_index(self, index=None): |
---|
| 119 | """ |
---|
| 120 | Set index. |
---|
| 121 | |
---|
| 122 | :param index: 1d arrays |
---|
| 123 | """ |
---|
| 124 | self.index = index |
---|
| 125 | |
---|
| 126 | def get_value(self): |
---|
| 127 | """ |
---|
[d4bf55e9] | 128 | Over sampling of r_nbins times phi_nbins, calculate Gaussian weights, |
---|
| 129 | then find smeared intensity |
---|
[87615a48] | 130 | """ |
---|
[642b259] | 131 | valid = self.get_data() |
---|
| 132 | if valid == None: |
---|
| 133 | return valid |
---|
[5a0d01b3] | 134 | # all zero values of dq |
---|
[836a762] | 135 | if numpy.all(numpy.fabs(self.dqx_data <= 1.1e-10)) and \ |
---|
| 136 | numpy.all(numpy.fabs(self.dqy_data <= 1.1e-10)): |
---|
[5a0d01b3] | 137 | self.smearer = False |
---|
[d4bf55e9] | 138 | |
---|
[642b259] | 139 | if self.smearer == False: |
---|
[d4bf55e9] | 140 | return self.model.evalDistribution([self.qx_data, self.qy_data]) |
---|
[04eb1a4] | 141 | |
---|
[642b259] | 142 | nr = self.nr[self.accuracy] |
---|
| 143 | nphi = self.nphi[self.accuracy] |
---|
| 144 | # Number of bins in the dqr direction (polar coordinate of dqx and dqy) |
---|
[d4bf55e9] | 145 | bin_size = self.limit / nr |
---|
| 146 | # Total number of bins = # of bins |
---|
| 147 | # in dq_r-direction times # of bins in dq_phi-direction |
---|
[642b259] | 148 | n_bins = nr * nphi |
---|
[87615a48] | 149 | # data length in the range of self.index |
---|
| 150 | len_data = len(self.qx_data) |
---|
[fd1aec6f] | 151 | #len_datay = len(self.qy_data) |
---|
[87615a48] | 152 | if self._engine == 'c' and self.coords == 'polar': |
---|
| 153 | try: |
---|
[fd5ac0d] | 154 | import sas.models.sas_extension.smearer2d_helper as smearer2dc |
---|
[fd1aec6f] | 155 | smearc = smearer2dc.new_Smearer_helper(self.qx_data, |
---|
| 156 | self.qy_data, |
---|
[87615a48] | 157 | self.dqx_data, self.dqy_data, |
---|
[fd1aec6f] | 158 | self.limit, nr, nphi, |
---|
| 159 | int(len_data)) |
---|
[87615a48] | 160 | weight_res = numpy.zeros(nr * nphi ) |
---|
| 161 | qx_res = numpy.zeros(nr * nphi * int(len_data)) |
---|
| 162 | qy_res = numpy.zeros(nr * nphi * int(len_data)) |
---|
[1aa8084] | 163 | smearer2dc.smearer2d_helper(smearc, weight_res, qx_res, qy_res) |
---|
[87615a48] | 164 | except: |
---|
| 165 | raise |
---|
[d4bf55e9] | 166 | else: |
---|
[fd1aec6f] | 167 | # Mean values of dqr at each bins |
---|
| 168 | # starting from the half of bin size |
---|
[87615a48] | 169 | r = bin_size / 2.0 + numpy.arange(nr) * bin_size |
---|
| 170 | # mean values of qphi at each bines |
---|
| 171 | phi = numpy.arange(nphi) |
---|
| 172 | dphi = phi * 2.0 * math.pi / nphi |
---|
| 173 | dphi = dphi.repeat(nr) |
---|
| 174 | |
---|
| 175 | ## Transform to polar coordinate, |
---|
| 176 | # and set dphi at each data points ; 1d array |
---|
| 177 | dphi = dphi.repeat(len_data) |
---|
| 178 | q_phi = self.qy_data / self.qx_data |
---|
| 179 | |
---|
[fd1aec6f] | 180 | # Starting angle is different between polar |
---|
| 181 | # and cartesian coordinates. |
---|
[87615a48] | 182 | #if self.coords != 'polar': |
---|
| 183 | # dphi += numpy.arctan( q_phi * self.dqx_data/ \ |
---|
[fd1aec6f] | 184 | # self.dqy_data).repeat(n_bins).reshape(len_data,\ |
---|
| 185 | # n_bins).transpose().flatten() |
---|
[87615a48] | 186 | |
---|
| 187 | # The angle (phi) of the original q point |
---|
| 188 | q_phi = numpy.arctan(q_phi).repeat(n_bins).reshape(len_data,\ |
---|
[fd1aec6f] | 189 | n_bins).transpose().flatten() |
---|
[87615a48] | 190 | ## Find Gaussian weight for each dq bins: The weight depends only |
---|
| 191 | # on r-direction (The integration may not need) |
---|
| 192 | weight_res = numpy.exp(-0.5 * ((r - bin_size / 2.0) * \ |
---|
[fd1aec6f] | 193 | (r - bin_size / 2.0)))- \ |
---|
| 194 | numpy.exp(-0.5 * ((r + bin_size / 2.0 ) *\ |
---|
| 195 | (r + bin_size / 2.0))) |
---|
[87615a48] | 196 | # No needs of normalization here. |
---|
| 197 | #weight_res /= numpy.sum(weight_res) |
---|
| 198 | weight_res = weight_res.repeat(nphi).reshape(nr, nphi) |
---|
| 199 | |
---|
| 200 | weight_res = weight_res.transpose().flatten() |
---|
| 201 | |
---|
| 202 | ## Set dr for all dq bins for averaging |
---|
[fd1aec6f] | 203 | dr = r.repeat(nphi).reshape(nr, nphi).transpose().flatten() |
---|
[87615a48] | 204 | ## Set dqr for all data points |
---|
[fd1aec6f] | 205 | dqx = numpy.outer(dr, self.dqx_data).flatten() |
---|
| 206 | dqy = numpy.outer(dr, self.dqy_data).flatten() |
---|
[87615a48] | 207 | |
---|
[fd1aec6f] | 208 | qx = self.qx_data.repeat(n_bins).reshape(len_data, \ |
---|
[87615a48] | 209 | n_bins).transpose().flatten() |
---|
[fd1aec6f] | 210 | qy = self.qy_data.repeat(n_bins).reshape(len_data, \ |
---|
[87615a48] | 211 | n_bins).transpose().flatten() |
---|
| 212 | |
---|
| 213 | # The polar needs rotation by -q_phi |
---|
| 214 | if self.coords == 'polar': |
---|
| 215 | q_r = numpy.sqrt(qx * qx + qy * qy) |
---|
| 216 | qx_res = ((dqx*numpy.cos(dphi) + q_r) * numpy.cos(-q_phi) +\ |
---|
| 217 | dqy*numpy.sin(dphi) * numpy.sin(-q_phi)) |
---|
| 218 | qy_res = (-(dqx*numpy.cos(dphi) + q_r) * numpy.sin(-q_phi) +\ |
---|
| 219 | dqy*numpy.sin(dphi) * numpy.cos(-q_phi)) |
---|
| 220 | else: |
---|
| 221 | qx_res = qx + dqx*numpy.cos(dphi) |
---|
| 222 | qy_res = qy + dqy*numpy.sin(dphi) |
---|
| 223 | |
---|
[642b259] | 224 | ## Evaluate all points |
---|
[d4bf55e9] | 225 | val = self.model.evalDistribution([qx_res, qy_res]) |
---|
[642b259] | 226 | ## Reshape into 2d array to use numpy weighted averaging |
---|
[fd1aec6f] | 227 | value_res= val.reshape(n_bins, len(self.qx_data)) |
---|
[642b259] | 228 | ## Averaging with Gaussian weighting: normalization included. |
---|
[d4bf55e9] | 229 | value =numpy.average(value_res,axis=0, weights=weight_res) |
---|
[642b259] | 230 | ## Return the smeared values in the range of self.index |
---|
| 231 | return value |
---|
[fd1aec6f] | 232 | """ |
---|
[642b259] | 233 | if __name__ == '__main__': |
---|
| 234 | ## Test w/ 2D linear function |
---|
[fd1aec6f] | 235 | x = 0.001*numpy.arange(1, 11) |
---|
[d4bf55e9] | 236 | dx = numpy.ones(len(x))*0.0003 |
---|
[fd1aec6f] | 237 | y = 0.001*numpy.arange(1, 11) |
---|
[642b259] | 238 | dy = numpy.ones(len(x))*0.001 |
---|
| 239 | z = numpy.ones(10) |
---|
| 240 | dz = numpy.sqrt(z) |
---|
| 241 | |
---|
[79492222] | 242 | from sas.dataloader import Data2D |
---|
[642b259] | 243 | #for i in range(10): print i, 0.001 + i*0.008/9.0 |
---|
| 244 | #for i in range(100): print i, int(math.floor( (i/ (100/9.0)) )) |
---|
| 245 | out = Data2D() |
---|
| 246 | out.data = z |
---|
| 247 | out.qx_data = x |
---|
| 248 | out.qy_data = y |
---|
| 249 | out.dqx_data = dx |
---|
| 250 | out.dqy_data = dy |
---|
[d4bf55e9] | 251 | out.q_data = numpy.sqrt(dx * dx + dy * dy) |
---|
[642b259] | 252 | index = numpy.ones(len(x), dtype = bool) |
---|
| 253 | out.mask = index |
---|
[79492222] | 254 | from sas.models.LineModel import LineModel |
---|
[642b259] | 255 | model = LineModel() |
---|
| 256 | model.setParam("A", 0) |
---|
| 257 | |
---|
[fd1aec6f] | 258 | smear = Smearer2D(out, model, index) |
---|
[642b259] | 259 | #smear.set_accuracy('Xhigh') |
---|
| 260 | value = smear.get_value() |
---|
| 261 | ## All data are ones, so the smeared should also be ones. |
---|
[fd1aec6f] | 262 | print "Data length =", len(value) |
---|
[d4bf55e9] | 263 | print " 2D linear function, I = 0 + 1*qy" |
---|
| 264 | text = " Gaussian weighted averaging on a 2D linear function will " |
---|
| 265 | text += "provides the results same as without the averaging." |
---|
| 266 | print text |
---|
[642b259] | 267 | print "qx_data", "qy_data", "I_nonsmear", "I_smeared" |
---|
| 268 | for ind in range(len(value)): |
---|
[fd1aec6f] | 269 | print x[ind], y[ind], model.evalDistribution([x, y])[ind], value[ind] |
---|
[d4bf55e9] | 270 | |
---|
[fd1aec6f] | 271 | |
---|
[642b259] | 272 | if __name__ == '__main__': |
---|
| 273 | ## Another Test w/ constant function |
---|
| 274 | x = 0.001*numpy.arange(1,11) |
---|
| 275 | dx = numpy.ones(len(x))*0.001 |
---|
| 276 | y = 0.001*numpy.arange(1,11) |
---|
| 277 | dy = numpy.ones(len(x))*0.001 |
---|
| 278 | z = numpy.ones(10) |
---|
| 279 | dz = numpy.sqrt(z) |
---|
| 280 | |
---|
| 281 | from DataLoader import Data2D |
---|
| 282 | #for i in range(10): print i, 0.001 + i*0.008/9.0 |
---|
| 283 | #for i in range(100): print i, int(math.floor( (i/ (100/9.0)) )) |
---|
| 284 | out = Data2D() |
---|
| 285 | out.data = z |
---|
| 286 | out.qx_data = x |
---|
| 287 | out.qy_data = y |
---|
| 288 | out.dqx_data = dx |
---|
| 289 | out.dqy_data = dy |
---|
| 290 | index = numpy.ones(len(x), dtype = bool) |
---|
| 291 | out.mask = index |
---|
[79492222] | 292 | from sas.models.Constant import Constant |
---|
[642b259] | 293 | model = Constant() |
---|
| 294 | |
---|
| 295 | value = Smearer2D(out,model,index).get_value() |
---|
| 296 | ## All data are ones, so the smeared values should also be ones. |
---|
| 297 | print "Data length =",len(value), ", Data=",value |
---|
| 298 | """ |
---|