source: sasmodels/sasmodels/models/capped_cylinder.c @ 592343f

core_shell_microgelscostrafo411magnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 592343f was 592343f, checked in by wojciech, 7 years ago

sas_J1c translated to sas_2J1x_x

  • Property mode set to 100644
File size: 5.0 KB
Line 
1double form_volume(double radius, double radius_cap, double length);
2double Iq(double q, double sld, double solvent_sld,
3    double radius, double radius_cap, double length);
4double Iqxy(double qx, double qy, double sld, double solvent_sld,
5    double radius, double radius_cap, double length, double theta, double phi);
6
7#define INVALID(v) (v.radius_cap < v.radius)
8
9// Integral over a convex lens kernel for t in [h/R,1].  See the docs for
10// the definition of the function being integrated.
11//   q is the magnitude of the q vector.
12//   h is the length of the lens "inside" the cylinder.  This negative wrt the
13//       definition of h in the docs.
14//   radius_cap is the radius of the lens
15//   length is the cylinder length, or the separation between the lens halves
16//   alpha is the angle of the cylinder wrt q.
17static double
18_cap_kernel(double q, double h, double radius_cap,
19                      double half_length, double sin_alpha, double cos_alpha)
20{
21    // translate a point in [-1,1] to a point in [lower,upper]
22    const double upper = 1.0;
23    const double lower = h/radius_cap; // integral lower bound
24    const double zm = 0.5*(upper-lower);
25    const double zb = 0.5*(upper+lower);
26
27    // cos term in integral is:
28    //    cos (q (R t - h + L/2) cos(alpha))
29    // so turn it into:
30    //    cos (m t + b)
31    // where:
32    //    m = q R cos(alpha)
33    //    b = q(L/2-h) cos(alpha)
34    const double m = q*radius_cap*cos_alpha; // cos argument slope
35    const double b = q*(half_length-h)*cos_alpha; // cos argument intercept
36    const double qrst = q*radius_cap*sin_alpha; // Q*R*sin(theta)
37    double total = 0.0;
38    for (int i=0; i<76 ;i++) {
39        const double t = Gauss76Z[i]*zm + zb;
40        const double radical = 1.0 - t*t;
41        const double bj = sas_2J1x_x(qrst*sqrt(radical));
42        const double Fq = cos(m*t + b) * radical * bj;
43        total += Gauss76Wt[i] * Fq;
44    }
45    // translate dx in [-1,1] to dx in [lower,upper]
46    const double integral = total*zm;
47    const double cap_Fq = 2.0*M_PI*cube(radius_cap)*integral;
48    return cap_Fq;
49}
50
51static double
52_fq(double q, double h, double radius_cap, double radius, double half_length,
53    double sin_alpha, double cos_alpha)
54{
55    const double cap_Fq = _cap_kernel(q, h, radius_cap, half_length, sin_alpha, cos_alpha);
56    const double bj = sas_2J1x_x(q*radius*sin_alpha);
57    const double si = sas_sinx_x(q*half_length*cos_alpha);
58    const double cyl_Fq = 2.0*M_PI*radius*radius*half_length*bj*si;
59    const double Aq = cap_Fq + cyl_Fq;
60    return Aq;
61}
62
63double form_volume(double radius, double radius_cap, double length)
64{
65    // cap radius should never be less than radius when this is called
66
67    // Note: volume V = 2*V_cap + V_cyl
68    //
69    // V_cyl = pi r_cyl^2 L
70    // V_cap = 1/6 pi h_c (3 r_cyl^2 + h_c^2) = 1/3 pi h_c^2 (3 r_cap - h_c)
71    //
72    // The docs for capped cylinder give the volume as:
73    //    V = pi r^2 L + 2/3 pi (R-h)^2 (2R + h)
74    // where r_cap=R and h = R - h_c.
75    //
76    // The first part is clearly V_cyl.  The second part requires some work:
77    //    (R-h)^2 => h_c^2
78    //    (2R+h) => 2R+ h_c-h_c + h => 2R + (R-h)-h_c + h => 3R-h_c
79    // And so:
80    //    2/3 pi (R-h)^2 (2R + h) => 2/3 pi h_c^2 (3 r_cap - h_c)
81    // which is 2 V_cap, using the second form above.
82    //
83    // In this function we are going to use the first form of V_cap
84    //
85    //      V = V_cyl + 2 V_cap
86    //        = pi r^2 L + pi hc (r^2 + hc^2/3)
87    //        = pi (r^2 (L+hc) + hc^3/3)
88    const double hc = radius_cap - sqrt(radius_cap*radius_cap - radius*radius);
89    return M_PI*(radius*radius*(length+hc) + hc*hc*hc/3.0);
90}
91
92double Iq(double q, double sld, double solvent_sld,
93          double radius, double radius_cap, double length)
94{
95    const double h = sqrt(radius_cap*radius_cap - radius*radius);
96    const double half_length = 0.5*length;
97
98    // translate a point in [-1,1] to a point in [0, pi/2]
99    const double zm = M_PI_4;
100    const double zb = M_PI_4;
101    double total = 0.0;
102    for (int i=0; i<76 ;i++) {
103        const double alpha= Gauss76Z[i]*zm + zb;
104        double sin_alpha, cos_alpha; // slots to hold sincos function output
105        SINCOS(alpha, sin_alpha, cos_alpha);
106
107        const double Aq = _fq(q, h, radius_cap, radius, half_length, sin_alpha, cos_alpha);
108        // sin_alpha for spherical coord integration
109        total += Gauss76Wt[i] * Aq * Aq * sin_alpha;
110    }
111    // translate dx in [-1,1] to dx in [lower,upper]
112    const double form = total * zm;
113
114    // Contrast
115    const double s = (sld - solvent_sld);
116    return 1.0e-4 * s * s * form;
117}
118
119
120double Iqxy(double qx, double qy,
121    double sld, double solvent_sld, double radius,
122    double radius_cap, double length,
123    double theta, double phi)
124{
125    double q, sin_alpha, cos_alpha;
126    ORIENT_SYMMETRIC(qx, qy, theta, phi, q, sin_alpha, cos_alpha);
127
128    const double h = sqrt(radius_cap*radius_cap - radius*radius);
129    const double Aq = _fq(q, h, radius_cap, radius, 0.5*length, sin_alpha, cos_alpha);
130
131    // Multiply by contrast^2 and convert to cm-1
132    const double s = (sld - solvent_sld);
133    return 1.0e-4 * square(s * Aq);
134}
Note: See TracBrowser for help on using the repository browser.