Changeset bd36af0 in sasmodels
- Timestamp:
- Nov 2, 2017 3:48:56 PM (7 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- c11d09f, 146793b
- Parents:
- ef969d9 (diff), edb0f85 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - git-author:
- Paul Kienzle <pkienzle@…> (11/02/17 15:48:56)
- git-committer:
- GitHub <noreply@…> (11/02/17 15:48:56)
- Location:
- sasmodels
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/product.py
r1f35235 redb0f85 101 101 model_info.composition = ('product', [p_info, s_info]) 102 102 model_info.control = p_info.control 103 model_info.hidden = p_info.hidden 104 if getattr(p_info, 'profile', None) is not None: 105 profile_pars = set(p.id for p in p_info.parameters.kernel_parameters) 106 def profile(**kwargs): 107 # extract the profile args 108 kwargs = dict((k, v) for k, v in kwargs.items() if k in profile_pars) 109 return p_info.profile(**kwargs) 110 else: 111 profile = None 112 model_info.profile = profile 113 model_info.profile_axes = p_info.profile_axes 114 103 115 # TODO: delegate random to p_info, s_info 104 116 #model_info.random = lambda: {} -
sasmodels/sasview_model.py
r1f35235 redb0f85 205 205 structure_factor._model_info) 206 206 ConstructedModel = make_model_from_info(model_info) 207 return ConstructedModel(form_factor.multiplicity) 207 return ConstructedModel(form_factor.multiplicity) 208 208 209 209 -
sasmodels/generate.py
r30b60d2 r6db17bd 370 370 """ 371 371 # Note: need 0xffffffff&val to force an unsigned 32-bit number 372 try: 373 source = source.encode('utf8') 374 except AttributeError: # bytes has no encode attribute in python 3 375 pass 372 376 return "%08X"%(0xffffffff&crc32(source)) 373 377 -
sasmodels/models/core_shell_parallelepiped.c
r92dfe0c rc69d6d6 1 double form_volume(double length_a, double length_b, double length_c, 1 double form_volume(double length_a, double length_b, double length_c, 2 2 double thick_rim_a, double thick_rim_b, double thick_rim_c); 3 3 double Iq(double q, double core_sld, double arim_sld, double brim_sld, double crim_sld, … … 9 9 double thick_rim_c, double theta, double phi, double psi); 10 10 11 double form_volume(double length_a, double length_b, double length_c, 11 double form_volume(double length_a, double length_b, double length_c, 12 12 double thick_rim_a, double thick_rim_b, double thick_rim_c) 13 13 { 14 14 //return length_a * length_b * length_c; 15 return length_a * length_b * length_c + 16 2.0 * thick_rim_a * length_b * length_c + 15 return length_a * length_b * length_c + 16 2.0 * thick_rim_a * length_b * length_c + 17 17 2.0 * thick_rim_b * length_a * length_c + 18 18 2.0 * thick_rim_c * length_a * length_b; … … 34 34 // Code converted from functions CSPPKernel and CSParallelepiped in libCylinder.c_scaled 35 35 // Did not understand the code completely, it should be rechecked (Miguel Gonzalez) 36 36 //Code is rewritten,the code is compliant with Diva Singhs thesis now (Dirk Honecker) 37 37 38 const double mu = 0.5 * q * length_b; 38 39 39 40 //calculate volume before rescaling (in original code, but not used) 40 //double vol = form_volume(length_a, length_b, length_c, thick_rim_a, thick_rim_b, thick_rim_c); 41 //double vol = length_a * length_b * length_c + 42 // 2.0 * thick_rim_a * length_b * length_c + 41 //double vol = form_volume(length_a, length_b, length_c, thick_rim_a, thick_rim_b, thick_rim_c); 42 //double vol = length_a * length_b * length_c + 43 // 2.0 * thick_rim_a * length_b * length_c + 43 44 // 2.0 * thick_rim_b * length_a * length_c + 44 45 // 2.0 * thick_rim_c * length_a * length_b; 45 46 46 47 // Scale sides by B 47 48 const double a_scaled = length_a / length_b; 48 49 const double c_scaled = length_c / length_b; 49 50 50 // ta and tb correspond to the definitions in CSPPKernel, but they don't make sense to me (MG) 51 // the a_scaled in the definition of tb was present in CSPPKernel in libCylinder.c, 52 // while in cspkernel in csparallelepiped.cpp (used for the 2D), all the definitions 53 // for ta, tb, tc use also A + 2*rim_thickness (but not scaled by B!!!) 54 double ta = (a_scaled + 2.0*thick_rim_a)/length_b; 55 double tb = (a_scaled + 2.0*thick_rim_b)/length_b; 51 double ta = a_scaled + 2.0*thick_rim_a/length_b; // incorrect ta = (a_scaled + 2.0*thick_rim_a)/length_b; 52 double tb = 1+ 2.0*thick_rim_b/length_b; // incorrect tb = (a_scaled + 2.0*thick_rim_b)/length_b; 53 double tc = c_scaled + 2.0*thick_rim_c/length_b; //not present 56 54 57 55 double Vin = length_a * length_b * length_c; … … 62 60 double V1 = (2.0 * thick_rim_a * length_b * length_c); // incorrect V1 (aa*bb*cc+2*ta*bb*cc) 63 61 double V2 = (2.0 * length_a * thick_rim_b * length_c); // incorrect V2(aa*bb*cc+2*aa*tb*cc) 62 double V3 = (2.0 * length_a * length_b * thick_rim_c); //not present 63 double Vot = Vin + V1 + V2 + V3; 64 64 65 65 // Scale factors (note that drC is not used later) … … 67 67 const double drhoA = (arim_sld-solvent_sld); 68 68 const double drhoB = (brim_sld-solvent_sld); 69 //const double drC_Vot = (crim_sld-solvent_sld)*Vot; 69 const double drhoC = (crim_sld-solvent_sld); // incorrect const double drC_Vot = (crim_sld-solvent_sld)*Vot; 70 70 71 71 72 // Precompute scale factors for combining cross terms from the shape 72 73 const double scale23 = drhoA*V1; 73 74 const double scale14 = drhoB*V2; 74 const double scale12 = drho0*Vin - scale23 - scale14; 75 const double scale24 = drhoC*V3; 76 const double scale11 = drho0*Vin; 77 const double scale12 = drho0*Vin - scale23 - scale14 - scale24; 75 78 76 79 // outer integral (with gauss points), integration limits = 0, 1 … … 83 86 // inner integral (with gauss points), integration limits = 0, 1 84 87 double inner_total = 0.0; 88 double inner_total_crim = 0.0; 85 89 for(int j=0; j<76; j++) { 86 90 const double uu = 0.5 * ( Gauss76Z[j] + 1.0 ); … … 88 92 SINCOS(M_PI_2*uu, sin_uu, cos_uu); 89 93 const double si1 = sas_sinx_x(mu_proj * sin_uu * a_scaled); 90 const double si2 = sas_sinx_x(mu_proj * cos_uu );94 const double si2 = sas_sinx_x(mu_proj * cos_uu ); 91 95 const double si3 = sas_sinx_x(mu_proj * sin_uu * ta); 92 96 const double si4 = sas_sinx_x(mu_proj * cos_uu * tb); … … 94 98 // Expression in libCylinder.c (neither drC nor Vot are used) 95 99 const double form = scale12*si1*si2 + scale23*si2*si3 + scale14*si1*si4; 100 const double form_crim = scale11*si1*si2; 96 101 97 // To note also that in csparallelepiped.cpp, there is a function called 98 // cspkernel, which seems to make more sense and has the following comment: 99 // This expression is different from NIST/IGOR package (I strongly believe the IGOR is wrong!!!). 10/15/2010. 100 // tmp =( dr0*tmp1*tmp2*tmp3*Vin + drA*(tmpt1-tmp1)*tmp2*tmp3*V1+ drB*tmp1*(tmpt2-tmp2)*tmp3*V2 + drC*tmp1*tmp2*(tmpt3-tmp3)*V3)* 101 // ( dr0*tmp1*tmp2*tmp3*Vin + drA*(tmpt1-tmp1)*tmp2*tmp3*V1+ drB*tmp1*(tmpt2-tmp2)*tmp3*V2 + drC*tmp1*tmp2*(tmpt3-tmp3)*V3); // correct FF : square of sum of phase factors 102 // This is the function called by csparallelepiped_analytical_2D_scaled, 103 // while CSParallelepipedModel calls CSParallelepiped in libCylinder.c 104 102 105 103 // correct FF : sum of square of phase factors 106 104 inner_total += Gauss76Wt[j] * form * form; 105 inner_total_crim += Gauss76Wt[j] * form_crim * form_crim; 107 106 } 108 107 inner_total *= 0.5; 109 108 inner_total_crim *= 0.5; 110 109 // now sum up the outer integral 111 110 const double si = sas_sinx_x(mu * c_scaled * sigma); 112 outer_total += Gauss76Wt[i] * inner_total * si * si; 111 const double si_crim = sas_sinx_x(mu * tc * sigma); 112 outer_total += Gauss76Wt[i] * (inner_total * si * si + inner_total_crim * si_crim * si_crim); 113 113 } 114 114 outer_total *= 0.5; … … 154 154 155 155 // The definitions of ta, tb, tc are not the same as in the 1D case because there is no 156 // the scaling by B. The use of length_a for the 3 of them seems clearly a mistake to me, 157 // but for the moment I let it like this until understanding better the code. 156 // the scaling by B. 158 157 double ta = length_a + 2.0*thick_rim_a; 159 double tb = length_ a+ 2.0*thick_rim_b;160 double tc = length_ a+ 2.0*thick_rim_c;158 double tb = length_b + 2.0*thick_rim_b; 159 double tc = length_c + 2.0*thick_rim_c; 161 160 //handle arg=0 separately, as sin(t)/t -> 1 as t->0 162 161 double siA = sas_sinx_x(0.5*q*length_a*xhat); … … 166 165 double siBt = sas_sinx_x(0.5*q*tb*yhat); 167 166 double siCt = sas_sinx_x(0.5*q*tc*zhat); 168 167 169 168 170 169 // f uses Vin, V1, V2, and V3 and it seems to have more sense than the value computed … … 173 172 + drA*(siAt-siA)*siB*siC*V1 174 173 + drB*siA*(siBt-siB)*siC*V2 175 + drC*siA*siB*(siCt *siCt-siC)*V3);176 174 + drC*siA*siB*(siCt-siC)*V3); 175 177 176 return 1.0e-4 * f * f; 178 177 }
Note: See TracChangeset
for help on using the changeset viewer.