[0f5bc9f] | 1 | /** |
---|
| 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 | |
---|
| 6 | If you use DANSE applications to do scientific research that leads to |
---|
| 7 | publication, we ask that you acknowledge the use of the software with the |
---|
| 8 | following sentence: |
---|
| 9 | |
---|
| 10 | "This work benefited from DANSE software developed under NSF award DMR-0520547." |
---|
| 11 | |
---|
| 12 | copyright 2008, University of Tennessee |
---|
| 13 | */ |
---|
| 14 | |
---|
| 15 | /** |
---|
| 16 | * Scattering model classes |
---|
| 17 | * The classes use the IGOR library found in |
---|
| 18 | * sansmodels/src/libigor |
---|
| 19 | * |
---|
| 20 | * TODO: refactor so that we pull in the old sansmodels.c_extensions |
---|
| 21 | */ |
---|
| 22 | |
---|
| 23 | #include <math.h> |
---|
| 24 | #include "models.hh" |
---|
| 25 | #include "parameters.hh" |
---|
| 26 | #include <stdio.h> |
---|
| 27 | using namespace std; |
---|
| 28 | |
---|
| 29 | extern "C" { |
---|
| 30 | #include "libCylinder.h" |
---|
[f9bf661] | 31 | #include "libStructureFactor.h" |
---|
[0f5bc9f] | 32 | #include "elliptical_cylinder.h" |
---|
| 33 | } |
---|
| 34 | |
---|
| 35 | EllipticalCylinderModel :: EllipticalCylinderModel() { |
---|
| 36 | scale = Parameter(1.0); |
---|
| 37 | r_minor = Parameter(20.0, true); |
---|
| 38 | r_minor.set_min(0.0); |
---|
| 39 | r_ratio = Parameter(1.5, true); |
---|
| 40 | r_ratio.set_min(0.0); |
---|
| 41 | length = Parameter(400.0, true); |
---|
| 42 | length.set_min(0.0); |
---|
[f10063e] | 43 | sldCyl = Parameter(4.e-6); |
---|
| 44 | sldSolv = Parameter(1.e-6); |
---|
[0f5bc9f] | 45 | background = Parameter(0.0); |
---|
[4628e31] | 46 | cyl_theta = Parameter(57.325, true); |
---|
[0f5bc9f] | 47 | cyl_phi = Parameter(0.0, true); |
---|
| 48 | cyl_psi = Parameter(0.0, true); |
---|
| 49 | } |
---|
| 50 | |
---|
| 51 | /** |
---|
| 52 | * Function to evaluate 1D scattering function |
---|
| 53 | * The NIST IGOR library is used for the actual calculation. |
---|
| 54 | * @param q: q-value |
---|
| 55 | * @return: function value |
---|
| 56 | */ |
---|
| 57 | double EllipticalCylinderModel :: operator()(double q) { |
---|
[f10063e] | 58 | double dp[7]; |
---|
[0f5bc9f] | 59 | |
---|
| 60 | dp[0] = scale(); |
---|
| 61 | dp[1] = r_minor(); |
---|
| 62 | dp[2] = r_ratio(); |
---|
| 63 | dp[3] = length(); |
---|
[f10063e] | 64 | dp[4] = sldCyl(); |
---|
| 65 | dp[5] = sldSolv(); |
---|
| 66 | dp[6] = 0.0; |
---|
[0f5bc9f] | 67 | |
---|
| 68 | // Get the dispersion points for the r_minor |
---|
| 69 | vector<WeightPoint> weights_rad; |
---|
| 70 | r_minor.get_weights(weights_rad); |
---|
| 71 | |
---|
| 72 | // Get the dispersion points for the r_ratio |
---|
| 73 | vector<WeightPoint> weights_rat; |
---|
| 74 | r_ratio.get_weights(weights_rat); |
---|
| 75 | |
---|
| 76 | // Get the dispersion points for the length |
---|
| 77 | vector<WeightPoint> weights_len; |
---|
| 78 | length.get_weights(weights_len); |
---|
| 79 | |
---|
| 80 | // Perform the computation, with all weight points |
---|
| 81 | double sum = 0.0; |
---|
| 82 | double norm = 0.0; |
---|
[c451be9] | 83 | double vol = 0.0; |
---|
[0f5bc9f] | 84 | |
---|
| 85 | // Loop over r_minor weight points |
---|
[34c2649] | 86 | for(size_t i=0; i<weights_rad.size(); i++) { |
---|
[0f5bc9f] | 87 | dp[1] = weights_rad[i].value; |
---|
| 88 | |
---|
| 89 | // Loop over r_ratio weight points |
---|
[34c2649] | 90 | for(size_t j=0; j<weights_rat.size(); j++) { |
---|
[0f5bc9f] | 91 | dp[2] = weights_rat[j].value; |
---|
| 92 | |
---|
| 93 | // Loop over length weight points |
---|
[34c2649] | 94 | for(size_t k=0; k<weights_len.size(); k++) { |
---|
[0f5bc9f] | 95 | dp[3] = weights_len[k].value; |
---|
[c451be9] | 96 | //Un-normalize by volume |
---|
[0f5bc9f] | 97 | sum += weights_rad[i].weight |
---|
| 98 | * weights_len[k].weight |
---|
| 99 | * weights_rat[j].weight |
---|
[c451be9] | 100 | * EllipCyl20(dp, q) |
---|
| 101 | * pow(weights_rad[i].value,2) * weights_rat[j].value |
---|
| 102 | * weights_len[k].value; |
---|
| 103 | //Find average volume |
---|
| 104 | vol += weights_rad[i].weight |
---|
| 105 | * weights_len[k].weight |
---|
| 106 | * weights_rat[j].weight |
---|
| 107 | * pow(weights_rad[i].value,2) * weights_rat[j].value |
---|
| 108 | * weights_len[k].value; |
---|
[0f5bc9f] | 109 | norm += weights_rad[i].weight |
---|
[c451be9] | 110 | * weights_len[k].weight |
---|
| 111 | * weights_rat[j].weight; |
---|
[0f5bc9f] | 112 | } |
---|
| 113 | } |
---|
| 114 | } |
---|
[c451be9] | 115 | |
---|
| 116 | if (vol != 0.0 && norm != 0.0) { |
---|
| 117 | //Re-normalize by avg volume |
---|
| 118 | sum = sum/(vol/norm);} |
---|
| 119 | |
---|
[0f5bc9f] | 120 | return sum/norm + background(); |
---|
| 121 | } |
---|
| 122 | |
---|
| 123 | /** |
---|
| 124 | * Function to evaluate 2D scattering function |
---|
| 125 | * @param q_x: value of Q along x |
---|
| 126 | * @param q_y: value of Q along y |
---|
| 127 | * @return: function value |
---|
| 128 | */ |
---|
| 129 | double EllipticalCylinderModel :: operator()(double qx, double qy) { |
---|
| 130 | EllipticalCylinderParameters dp; |
---|
| 131 | // Fill parameter array |
---|
| 132 | dp.scale = scale(); |
---|
| 133 | dp.r_minor = r_minor(); |
---|
| 134 | dp.r_ratio = r_ratio(); |
---|
| 135 | dp.length = length(); |
---|
[f10063e] | 136 | dp.sldCyl = sldCyl(); |
---|
| 137 | dp.sldSolv = sldSolv(); |
---|
[0f5bc9f] | 138 | dp.background = 0.0; |
---|
| 139 | dp.cyl_theta = cyl_theta(); |
---|
| 140 | dp.cyl_phi = cyl_phi(); |
---|
| 141 | dp.cyl_psi = cyl_psi(); |
---|
| 142 | |
---|
| 143 | // Get the dispersion points for the r_minor |
---|
| 144 | vector<WeightPoint> weights_rad; |
---|
| 145 | r_minor.get_weights(weights_rad); |
---|
| 146 | |
---|
| 147 | // Get the dispersion points for the r_ratio |
---|
| 148 | vector<WeightPoint> weights_rat; |
---|
| 149 | r_ratio.get_weights(weights_rat); |
---|
| 150 | |
---|
| 151 | // Get the dispersion points for the length |
---|
| 152 | vector<WeightPoint> weights_len; |
---|
| 153 | length.get_weights(weights_len); |
---|
| 154 | |
---|
| 155 | // Get angular averaging for theta |
---|
| 156 | vector<WeightPoint> weights_theta; |
---|
| 157 | cyl_theta.get_weights(weights_theta); |
---|
| 158 | |
---|
| 159 | // Get angular averaging for phi |
---|
| 160 | vector<WeightPoint> weights_phi; |
---|
| 161 | cyl_phi.get_weights(weights_phi); |
---|
| 162 | |
---|
| 163 | // Get angular averaging for psi |
---|
| 164 | vector<WeightPoint> weights_psi; |
---|
| 165 | cyl_psi.get_weights(weights_psi); |
---|
| 166 | |
---|
| 167 | // Perform the computation, with all weight points |
---|
| 168 | double sum = 0.0; |
---|
| 169 | double norm = 0.0; |
---|
[c451be9] | 170 | double norm_vol = 0.0; |
---|
| 171 | double vol = 0.0; |
---|
[4628e31] | 172 | double pi = 4.0*atan(1.0); |
---|
[0f5bc9f] | 173 | // Loop over minor radius weight points |
---|
[34c2649] | 174 | for(size_t i=0; i<weights_rad.size(); i++) { |
---|
[0f5bc9f] | 175 | dp.r_minor = weights_rad[i].value; |
---|
| 176 | |
---|
| 177 | |
---|
| 178 | // Loop over length weight points |
---|
[34c2649] | 179 | for(size_t j=0; j<weights_len.size(); j++) { |
---|
[0f5bc9f] | 180 | dp.length = weights_len[j].value; |
---|
| 181 | |
---|
| 182 | // Loop over r_ration weight points |
---|
[34c2649] | 183 | for(size_t m=0; m<weights_rat.size(); m++) { |
---|
[0f5bc9f] | 184 | dp.r_ratio = weights_rat[m].value; |
---|
| 185 | |
---|
| 186 | // Average over theta distribution |
---|
[34c2649] | 187 | for(size_t k=0; k<weights_theta.size(); k++) { |
---|
[0f5bc9f] | 188 | dp.cyl_theta = weights_theta[k].value; |
---|
| 189 | |
---|
| 190 | // Average over phi distribution |
---|
[34c2649] | 191 | for(size_t l=0; l<weights_phi.size(); l++) { |
---|
[0f5bc9f] | 192 | dp.cyl_phi = weights_phi[l].value; |
---|
| 193 | |
---|
| 194 | // Average over phi distribution |
---|
[34c2649] | 195 | for(size_t o=0; o<weights_psi.size(); o++) { |
---|
[0f5bc9f] | 196 | dp.cyl_psi = weights_psi[o].value; |
---|
[c451be9] | 197 | //Un-normalize by volume |
---|
[0f5bc9f] | 198 | double _ptvalue = weights_rad[i].weight |
---|
| 199 | * weights_len[j].weight |
---|
| 200 | * weights_rat[m].weight |
---|
| 201 | * weights_theta[k].weight |
---|
| 202 | * weights_phi[l].weight |
---|
| 203 | * weights_psi[o].weight |
---|
[c451be9] | 204 | * elliptical_cylinder_analytical_2DXY(&dp, qx, qy) |
---|
| 205 | * pow(weights_rad[i].value,2) |
---|
| 206 | * weights_len[j].value |
---|
| 207 | * weights_rat[m].value; |
---|
[0f5bc9f] | 208 | if (weights_theta.size()>1) { |
---|
[4628e31] | 209 | _ptvalue *= fabs(sin(weights_theta[k].value*pi/180.0)); |
---|
[0f5bc9f] | 210 | } |
---|
| 211 | sum += _ptvalue; |
---|
[c451be9] | 212 | //Find average volume |
---|
| 213 | vol += weights_rad[i].weight |
---|
| 214 | * weights_len[j].weight |
---|
| 215 | * weights_rat[m].weight |
---|
| 216 | * pow(weights_rad[i].value,2) |
---|
| 217 | * weights_len[j].value |
---|
| 218 | * weights_rat[m].value; |
---|
| 219 | //Find norm for volume |
---|
| 220 | norm_vol += weights_rad[i].weight |
---|
| 221 | * weights_len[j].weight |
---|
| 222 | * weights_rat[m].weight; |
---|
[0f5bc9f] | 223 | |
---|
| 224 | norm += weights_rad[i].weight |
---|
| 225 | * weights_len[j].weight |
---|
| 226 | * weights_rat[m].weight |
---|
| 227 | * weights_theta[k].weight |
---|
| 228 | * weights_phi[l].weight |
---|
| 229 | * weights_psi[o].weight; |
---|
| 230 | |
---|
| 231 | } |
---|
| 232 | } |
---|
| 233 | } |
---|
| 234 | } |
---|
| 235 | } |
---|
| 236 | } |
---|
| 237 | // Averaging in theta needs an extra normalization |
---|
| 238 | // factor to account for the sin(theta) term in the |
---|
| 239 | // integration (see documentation). |
---|
| 240 | if (weights_theta.size()>1) norm = norm / asin(1.0); |
---|
[c451be9] | 241 | |
---|
| 242 | if (vol != 0.0 && norm_vol != 0.0) { |
---|
| 243 | //Re-normalize by avg volume |
---|
| 244 | sum = sum/(vol/norm_vol);} |
---|
| 245 | |
---|
[0f5bc9f] | 246 | return sum/norm + background(); |
---|
[c451be9] | 247 | |
---|
[0f5bc9f] | 248 | } |
---|
| 249 | |
---|
| 250 | /** |
---|
| 251 | * Function to evaluate 2D scattering function |
---|
| 252 | * @param pars: parameters of the cylinder |
---|
| 253 | * @param q: q-value |
---|
| 254 | * @param phi: angle phi |
---|
| 255 | * @return: function value |
---|
| 256 | */ |
---|
| 257 | double EllipticalCylinderModel :: evaluate_rphi(double q, double phi) { |
---|
| 258 | double qx = q*cos(phi); |
---|
| 259 | double qy = q*sin(phi); |
---|
| 260 | return (*this).operator()(qx, qy); |
---|
| 261 | } |
---|
[5eb9154] | 262 | /** |
---|
| 263 | * Function to calculate effective radius |
---|
| 264 | * @return: effective radius value |
---|
| 265 | */ |
---|
| 266 | double EllipticalCylinderModel :: calculate_ER() { |
---|
[f9bf661] | 267 | EllipticalCylinderParameters dp; |
---|
| 268 | dp.r_minor = r_minor(); |
---|
| 269 | dp.r_ratio = r_ratio(); |
---|
| 270 | dp.length = length(); |
---|
| 271 | double rad_out = 0.0; |
---|
| 272 | double suf_rad = sqrt(dp.r_minor*dp.r_minor*dp.r_ratio); |
---|
| 273 | |
---|
| 274 | // Perform the computation, with all weight points |
---|
| 275 | double sum = 0.0; |
---|
| 276 | double norm = 0.0; |
---|
| 277 | |
---|
| 278 | // Get the dispersion points for the r_minor |
---|
| 279 | vector<WeightPoint> weights_rad; |
---|
| 280 | r_minor.get_weights(weights_rad); |
---|
| 281 | |
---|
| 282 | // Get the dispersion points for the r_ratio |
---|
| 283 | vector<WeightPoint> weights_rat; |
---|
| 284 | r_ratio.get_weights(weights_rat); |
---|
| 285 | |
---|
| 286 | // Get the dispersion points for the length |
---|
| 287 | vector<WeightPoint> weights_len; |
---|
| 288 | length.get_weights(weights_len); |
---|
| 289 | |
---|
| 290 | // Loop over minor radius weight points |
---|
[34c2649] | 291 | for(size_t i=0; i<weights_rad.size(); i++) { |
---|
[f9bf661] | 292 | dp.r_minor = weights_rad[i].value; |
---|
| 293 | |
---|
| 294 | // Loop over length weight points |
---|
[34c2649] | 295 | for(size_t j=0; j<weights_len.size(); j++) { |
---|
[f9bf661] | 296 | dp.length = weights_len[j].value; |
---|
| 297 | |
---|
| 298 | // Loop over r_ration weight points |
---|
[34c2649] | 299 | for(size_t m=0; m<weights_rat.size(); m++) { |
---|
[f9bf661] | 300 | dp.r_ratio = weights_rat[m].value; |
---|
| 301 | //Calculate surface averaged radius |
---|
| 302 | suf_rad = sqrt(dp.r_minor * dp.r_minor * dp.r_ratio); |
---|
| 303 | |
---|
| 304 | //Note: output of "DiamCyl(dp.length,dp.radius)" is DIAMETER. |
---|
| 305 | sum +=weights_rad[i].weight *weights_len[j].weight |
---|
| 306 | * weights_rat[m].weight*DiamCyl(dp.length, suf_rad)/2.0; |
---|
| 307 | norm += weights_rad[i].weight *weights_len[j].weight* weights_rat[m].weight; |
---|
| 308 | } |
---|
| 309 | } |
---|
| 310 | } |
---|
| 311 | if (norm != 0){ |
---|
| 312 | //return the averaged value |
---|
| 313 | rad_out = sum/norm;} |
---|
| 314 | else{ |
---|
| 315 | //return normal value |
---|
| 316 | //Note: output of "DiamCyl(dp.length,dp.radius)" is DIAMETER. |
---|
| 317 | rad_out = DiamCyl(dp.length, suf_rad)/2.0;} |
---|
| 318 | |
---|
| 319 | return rad_out; |
---|
[5eb9154] | 320 | } |
---|