Changeset a2d8a67 in sasmodels
- Timestamp:
- Mar 20, 2016 10:12:42 AM (9 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- 91d7ec4
- Parents:
- 3a66cf7
- Location:
- sasmodels/models
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/models/raspberry.c
r0433203 ra2d8a67 49 49 VS = M_4PI_3*rS*rS*rS; 50 50 51 //Number of small particles per large particle 51 52 Np = vfS*fSs*VL/vfL/VS; 52 53 54 //Total scattering length difference 53 55 slT = delrhoL*VL + Np*delrhoS*VS; 54 56 55 sfLS = sph_j1c(q*rL)*sph_j1c(q*rS)*sinc(q*(rL+deltaS*rS)); 56 sfSS = sph_j1c(q*rS)*sph_j1c(q*rS)*sinc(q*(rL+deltaS*rS))*sinc(q*(rL+deltaS*rS)); 57 58 f2 = delrhoL*delrhoL*VL*VL*sph_j1c(q*rL)*sph_j1c(q*rL); 59 f2 += Np*delrhoS*delrhoS*VS*VS*sph_j1c(q*rS)*sph_j1c(q*rS); 57 //Form factors for each particle 58 psiL = sph_j1c(q*rL); 59 psiS = sph_j1c(q*rS); 60 61 //Cross term between large and small particles 62 sfLS = psiL*psiS*sinc(q*(rL+deltaS*rS)); 63 //Cross term between small particles at the surface 64 sfSS = psiS*psiS*sinc(q*(rL+deltaS*rS))*sinc(q*(rL+deltaS*rS)); 65 66 //Large sphere form factor term 67 f2 = delrhoL*delrhoL*VL*VL*psiL*psiL; 68 //Small sphere form factor term 69 f2 += Np*delrhoS*delrhoS*VS*VS*psiS*psiS; 70 //Small particle - small particle cross term 60 71 f2 += Np*(Np-1)*delrhoS*delrhoS*VS*VS*sfSS; 72 //Large-small particle cross term 61 73 f2 += 2*Np*delrhoL*delrhoS*VL*VS*sfLS; 74 //Normalise by total scattering length difference 62 75 if (f2 != 0.0){ 63 76 f2 = f2/slT/slT; 64 77 } 65 78 79 //I(q) for large-small composite particles 66 80 f2 = f2*(vfL*delrhoL*delrhoL*VL + vfS*fSs*Np*delrhoS*delrhoS*VS); 67 68 f2+= vfS*(1.0-fSs)* pow(delrhoS, 2)*VS*sph_j1c(q*rS)*sph_j1c(q*rS);81 //I(q) for free small particles 82 f2+= vfS*(1.0-fSs)*delrhoS*delrhoS*VS*psiS*psiS; 69 83 70 84 // normalize to single particle volume and convert to 1/cm -
sasmodels/models/raspberry.py
r0433203 ra2d8a67 3 3 ---------- 4 4 5 The large and small spheres have their own SLD, as well as the solvent. The 6 surface coverage term is a fractional coverage (maximum of approximately 0.9 7 for hexagonally-packed spheres on a surface). Since not all of the small 8 spheres are necessarily attached to the surface, the excess free (small) 9 spheres scattering is also included in the calculation. The function calculate 10 follows equations (8)-(12) of the reference below, and the equations are not 11 reproduced here. 12 13 No inter-particle scattering is included in this model. 14 5 The figure below shows a schematic of a large droplet surrounded by several smaller particles 6 forming a structure similar to that of Pickering emulsions. 15 7 16 8 .. figure:: img/raspberry_geometry.jpg 17 9 18 10 Schematic of the raspberry model 19 20 where *Ro* is the radius of the large sphere, *Rp* the radius of the smaller21 spheres on the surface and |delta| = the fractional penetration depth.22 11 23 For 2D data: The 2D scattering intensity is calculated in the same way as 1D, 24 where the *q* vector is defined as 12 In order to calculate the form factor of the entire complex, the self-correlation of the large droplet, 13 the self-correlation of the particles, the correlation terms between different particles 14 and the cross terms between large droplet and small particles all need to be calculated. 15 16 Consider two infinitely thin shells of radii R2 and R2 separated by distance r. The general 17 structure of the equation is then the form factor of the two shells multiplied by the phase 18 factor that accounts for the separation of their centers. 25 19 26 20 .. math:: 27 21 28 q = \sqrt{q_x^2 + q_y^2} 22 S(q) = \frac{sin(qR_1)}{qR_1}\frac{sin(qR_2)}{qR_2}\frac{sin(qr)}{qr} 23 24 In this case, the large droplet and small particles are solid spheres rather than thin shells. Thus 25 the two terms must be integrated over $R_L$ and $R_S$ respectively using the weighting function of 26 a sphere. We then obtain the functions for the form of the two spheres: 27 28 .. math:: 29 30 \Psi_L = \Int_0^{R_L}(4\piR^2_L)\frac{sin(qR_L)}{qR_L}dR_L = \frac{3[sin(qR_L)-qR_Lcos(qR_L)]}{(qR_L)^2} 31 32 .. math:: 33 34 \Psi_S = \Int_0^{R_S}(4\piR^2_S)\frac{sin(qR_S)}{qR_S}dR_S = \frac{3[sin(qR_S)-qR_Lcos(qR_S)]}{(qR_S)^2} 35 36 The cross term between the large droplet and small particles is given by: 37 38 .. math:: 39 S_{LS} = \Psi_L\Psi_S\frac{sin(q(R_L+\deltaR_S))}{q(R_L+\deltaR_S)} 40 41 and the self term between small particles is given by: 42 43 .. math:: 44 S_{SS} = \Psi_S^2\bigl[\frac{sin(q(R_L+\deltaR_S))}{q(R_L+\deltaR_S)}\bigr]^2 45 46 The number of small particles per large droplet, $N_p$, is given by: 47 48 .. math:: 49 50 N_p = \frac{\phi_S\phi_{surface}V_L}{\phi_L\V_S} 51 52 where $\phi_S$ is the volume fraction of small particles in the sample, $\phi_{surface}$ is the 53 fraction of the small particles that are adsorbed to the large droplets, $\phi_L$ is the volume fraction 54 of large droplets in the sample, and $V_S$ and $V_L$ are the volumes of individual small particles and 55 large droplets respectively. 56 57 The form factor of the entire complex can now be calculated including the excess scattering length 58 densities of the components $\Delta\rho_L$ and $\Delta\rho_S$, where $\Delta\rho_x = |\rho_x-\rho_{solvent}|$ : 59 60 .. math:: 61 62 P_{LS} = \frac{1}{M^2}\bigl[(\Delta\rho_L)^2V_L^2\Psi_L^2+N_p(\Delta\rho_S)^2V_S^2\Psi_S^2 63 + N_p(1-N_p)(\Delta\rho_S)^2V_S^2S_{SS} + 2N_p\Delta\rho_L\Delta\rho_SV_LV_SS_{LS} 64 65 where M is the total scattering length of the whole complex : 66 67 .. math:: 68 M = \Delta\rho_LV_L + N_p\Delta\rho_SV_S 69 70 In a real system, there will ususally be an excess of small particles such that some fraction remain unbound. 71 Therefore the overall scattering intensity is given by: 72 73 .. math:: 74 I(Q) = I_{LS}(Q) + I_S(Q) = (\phi_L(\Delta\rho_L)^2V_L + \phi_S\phi_{surface}N_p(\Delta\rho_S)^2V_S)P_{LS} 75 + \phi_S(1-\phi_{surface})(\Delta\rho_S)^2V_S\Psi_S^2 76 77 A useful parameter to extract is the fraction of the surface area of the large droplets that is covered by small 78 particles. This can be calculated from the model parameters as: 79 80 .. math:: 81 \Chi = \frac{4\phi_L\phi_{surface}(R_L+\delta\R_S)}{\phi_LR_S} 29 82 30 83 … … 35 88 *particles*, *Journal of Colloid and Interface Science*, 343(1) (2010) 36-41 36 89 37 **Author:** Andrew jackson **on:** 200890 **Author:** Andrew Jackson **on:** 2008 38 91 39 **Modified by:** Paul Butler **on:** March 18, 201692 **Modified by:** Andrew Jackson **on:** March 20, 2016 40 93 41 **Reviewed by:** Paul Butler **on:** March 18, 201694 **Reviewed by:** Andrew Jackson **on:** March 20, 2016 42 95 """ 43 96 … … 80 133 ["radius_sm", "Ang", 100, [0, inf], "", 81 134 "radius of small spheres"], 82 ["penetration", "Ang", 0 .0, [0, inf], "",83 " penetration depth of small spheres into large sphere"],135 ["penetration", "Ang", 0, [-1, 1], "", 136 "fractional penetration depth of small spheres into large sphere"], 84 137 ] 85 138
Note: See TracChangeset
for help on using the changeset viewer.