source: sasmodels/sasmodels/models/binary_hard_sphere.c @ 68425bf

core_shell_microgelscostrafo411magnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 68425bf was 3a48772, checked in by Paul Kienzle <pkienzle@…>, 8 years ago

use predefined constants for fractions of pi

  • Property mode set to 100644
File size: 5.2 KB
Line 
1double form_volume(void);
2
3double Iq(double q, 
4    double lg_radius, double sm_radius,
5    double lg_vol_frac, double sm_vol_frac,
6    double lg_sld, double sm_sld, double solvent_sld
7    );
8   
9void calculate_psfs(double qval,
10    double r2, double nf2,
11    double aa, double phi,
12    double *s11, double *s22, double *s12
13    );
14
15double form_volume(void)
16{
17    return 1.0;
18}
19
20double Iq(double q,
21    double lg_radius, double sm_radius,
22    double lg_vol_frac, double sm_vol_frac,
23    double lg_sld, double sm_sld, double solvent_sld)
24   
25{
26    double r2,r1,nf2,phi,aa,rho2,rho1,rhos,inten;       //my local names
27    double psf11,psf12,psf22;
28    double phi1,phi2,phr,a3;
29    double v1,v2,n1,n2,qr1,qr2,b1,b2,sc1,sc2;
30   
31    r2 = lg_radius;
32    r1 = sm_radius;
33    phi2 = lg_vol_frac;
34    phi1 = sm_vol_frac;
35    rho2 = lg_sld;
36    rho1 = sm_sld;
37    rhos = solvent_sld;
38   
39   
40    phi = phi1 + phi2;
41    aa = r1/r2;
42    //calculate the number fraction of larger spheres (eqn 2 in reference)
43    a3=aa*aa*aa;
44    phr=phi2/phi;
45    nf2 = phr*a3/(1.0-phr+phr*a3);
46    // calculate the PSF's here
47    calculate_psfs(q,r2,nf2,aa,phi,&psf11,&psf22,&psf12);
48   
49    // /* do form factor calculations  */
50   
51    v1 = M_4PI_3*r1*r1*r1;
52    v2 = M_4PI_3*r2*r2*r2;
53   
54    n1 = phi1/v1;
55    n2 = phi2/v2;
56   
57    qr1 = r1*q;
58    qr2 = r2*q;
59
60    //if (qr1 == 0){
61        //sc1 = 1.0/3.0;
62    //}else{
63        //sc1 = (sin(qr1)-qr1*cos(qr1))/qr1/qr1/qr1;
64    //}
65    //if (qr2 == 0){
66        //sc2 = 1.0/3.0;
67    //}else{
68        //sc2 = (sin(qr2)-qr2*cos(qr2))/qr2/qr2/qr2;
69    //}
70    sc1 = sph_j1c(qr1);
71    sc2 = sph_j1c(qr2);
72    b1 = r1*r1*r1*(rho1-rhos)*M_4PI_3*sc1;
73    b2 = r2*r2*r2*(rho2-rhos)*M_4PI_3*sc2;
74    inten = n1*b1*b1*psf11;
75    inten += sqrt(n1*n2)*2.0*b1*b2*psf12;
76    inten += n2*b2*b2*psf22;
77    ///* convert I(1/A) to (1/cm)  */
78    inten *= 1.0e8;
79    ///*convert rho^2 in 10^-6A to A*/
80    inten *= 1.0e-12;   
81    return(inten);
82}
83
84
85void calculate_psfs(double qval,
86    double r2, double nf2,
87    double aa, double phi,
88    double *s11, double *s22, double *s12)
89
90{
91    //  variable qval,r2,nf2,aa,phi,&s11,&s22,&s12
92   
93    //   calculate constant terms
94    double s2,v,a3,v1,v2,g11,g12,g22,wmv,wmv3,wmv4;
95    double a1,a2i,a2,b1,b2,b12,gm1,gm12;
96    double yy,ay,ay2,ay3,t1,t2,t3,f11,y2,y3,tt1,tt2,tt3;
97    double c11,c22,c12,f12,f22,ttt1,ttt2,ttt3,ttt4,yl,y13;
98    double t21,t22,t23,t31,t32,t33,t41,t42,yl3,wma3,y1;
99   
100    s2 = 2.0*r2;
101//    s1 = aa*s2;  why is this never used?  check original paper?
102    v = phi;
103    a3 = aa*aa*aa;
104    v1=((1.-nf2)*a3/(nf2+(1.-nf2)*a3))*v;
105    v2=(nf2/(nf2+(1.-nf2)*a3))*v;
106    g11=((1.+.5*v)+1.5*v2*(aa-1.))/(1.-v)/(1.-v);
107    g22=((1.+.5*v)+1.5*v1*(1./aa-1.))/(1.-v)/(1.-v);
108    g12=((1.+.5*v)+1.5*(1.-aa)*(v1-v2)/(1.+aa))/(1.-v)/(1.-v);
109    wmv = 1/(1.-v);
110    wmv3 = wmv*wmv*wmv;
111    wmv4 = wmv*wmv3;
112    a1=3.*wmv4*((v1+a3*v2)*(1.+v+v*v)-3.*v1*v2*(1.-aa)*(1.-aa)*(1.+v1+aa*(1.+v2))) + ((v1+a3*v2)*(1.+2.*v)+(1.+v+v*v)-3.*v1*v2*(1.-aa)*(1.-aa)-3.*v2*(1.-aa)*(1.-aa)*(1.+v1+aa*(1.+v2)))*wmv3;
113    a2i=((v1+a3*v2)*(1.+v+v*v)-3.*v1*v2*(1.-aa)*(1.-aa)*(1.+v1+aa*(1.+v2)))*3*wmv4 + ((v1+a3*v2)*(1.+2.*v)+a3*(1.+v+v*v)-3.*v1*v2*(1.-aa)*(1.-aa)*aa-3.*v1*(1.-aa)*(1.-aa)*(1.+v1+aa*(1.+v2)))*wmv3;
114    a2=a2i/a3;
115    b1=-6.*(v1*g11*g11+.25*v2*(1.+aa)*(1.+aa)*aa*g12*g12);
116    b2=-6.*(v2*g22*g22+.25*v1/a3*(1.+aa)*(1.+aa)*g12*g12);
117    b12=-3.*aa*(1.+aa)*(v1*g11/aa/aa+v2*g22)*g12;
118    gm1=(v1*a1+a3*v2*a2)*.5;
119    gm12=2.*gm1*(1.-aa)/aa;
120    //c 
121    //c   calculate the direct correlation functions and print results
122    //c
123    //  do 20 j=1,npts
124   
125    yy=qval*s2;
126    //c   calculate direct correlation functions
127    //c   ----c11
128    ay=aa*yy;
129    ay2 = ay*ay;
130    ay3 = ay*ay*ay;
131    t1=a1*(sin(ay)-ay*cos(ay));
132    t2=b1*(2.*ay*sin(ay)-(ay2-2.)*cos(ay)-2.)/ay;
133    t3=gm1*((4.*ay*ay2-24.*ay)*sin(ay)-(ay2*ay2-12.*ay2+24.)*cos(ay)+24.)/ay3;
134    f11=24.*v1*(t1+t2+t3)/ay3;
135   
136    //c ------c22
137    y2=yy*yy;
138    y3=yy*y2;
139    tt1=a2*(sin(yy)-yy*cos(yy));
140    tt2=b2*(2.*yy*sin(yy)-(y2-2.)*cos(yy)-2.)/yy;
141    tt3=gm1*((4.*y3-24.*yy)*sin(yy)-(y2*y2-12.*y2+24.)*cos(yy)+24.)/ay3;
142    f22=24.*v2*(tt1+tt2+tt3)/y3;
143   
144    //c   -----c12
145    yl=.5*yy*(1.-aa);
146    yl3=yl*yl*yl;
147    wma3 = (1.-aa)*(1.-aa)*(1.-aa);
148    y1=aa*yy;
149    y13 = y1*y1*y1;
150    ttt1=3.*wma3*v*sqrt(nf2)*sqrt(1.-nf2)*a1*(sin(yl)-yl*cos(yl))/((nf2+(1.-nf2)*a3)*yl3);
151    t21=b12*(2.*y1*cos(y1)+(y1*y1-2.)*sin(y1));
152    t22=gm12*((3.*y1*y1-6.)*cos(y1)+(y1*y1*y1-6.*y1)*sin(y1)+6.)/y1;
153    t23=gm1*((4.*y13-24.*y1)*cos(y1)+(y13*y1-12.*y1*y1+24.)*sin(y1))/(y1*y1);
154    t31=b12*(2.*y1*sin(y1)-(y1*y1-2.)*cos(y1)-2.);
155    t32=gm12*((3.*y1*y1-6.)*sin(y1)-(y1*y1*y1-6.*y1)*cos(y1))/y1;
156    t33=gm1*((4.*y13-24.*y1)*sin(y1)-(y13*y1-12.*y1*y1+24.)*cos(y1)+24.)/(y1*y1);
157    t41=cos(yl)*((sin(y1)-y1*cos(y1))/(y1*y1) + (1.-aa)/(2.*aa)*(1.-cos(y1))/y1);
158    t42=sin(yl)*((cos(y1)+y1*sin(y1)-1.)/(y1*y1) + (1.-aa)/(2.*aa)*sin(y1)/y1);
159    ttt2=sin(yl)*(t21+t22+t23)/(y13*y1);
160    ttt3=cos(yl)*(t31+t32+t33)/(y13*y1);
161    ttt4=a1*(t41+t42)/y1;
162    f12=ttt1+24.*v*sqrt(nf2)*sqrt(1.-nf2)*a3*(ttt2+ttt3+ttt4)/(nf2+(1.-nf2)*a3);
163   
164    c11=f11;
165    c22=f22;
166    c12=f12;
167    *s11=1./(1.+c11-(c12)*c12/(1.+c22));
168    *s22=1./(1.+c22-(c12)*c12/(1.+c11)); 
169    *s12=-c12/((1.+c11)*(1.+c22)-(c12)*(c12));   
170   
171    return;
172}
173
Note: See TracBrowser for help on using the repository browser.