source: sasmodels/sasmodels/models/capped_cylinder.c @ 3a48772

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

use predefined constants for fractions of pi

  • Property mode set to 100644
File size: 5.0 KB
RevLine 
[2222134]1double form_volume(double radius, double radius_cap, double length);
[994d77f]2double Iq(double q, double sld, double solvent_sld,
[2222134]3    double radius, double radius_cap, double length);
[994d77f]4double Iqxy(double qx, double qy, double sld, double solvent_sld,
[2222134]5    double radius, double radius_cap, double length, double theta, double phi);
[5d4777d]6
[2222134]7#define INVALID(v) (v.radius_cap < v.radius)
[2f5c6d4]8
[5d4777d]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.
[2222134]14//   radius_cap is the radius of the lens
[5d4777d]15//   length is the cylinder length, or the separation between the lens halves
16//   alpha is the angle of the cylinder wrt q.
[50e1e40]17static double
[2222134]18_cap_kernel(double q, double h, double radius_cap,
[50e1e40]19                      double half_length, double sin_alpha, double cos_alpha)
[5d4777d]20{
[50e1e40]21    // translate a point in [-1,1] to a point in [lower,upper]
[994d77f]22    const double upper = 1.0;
[2222134]23    const double lower = h/radius_cap; // integral lower bound
[139c528]24    const double zm = 0.5*(upper-lower);
25    const double zb = 0.5*(upper+lower);
[50e1e40]26
[f4cf580]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)
[2222134]34    const double m = q*radius_cap*cos_alpha; // cos argument slope
[50e1e40]35    const double b = q*(half_length-h)*cos_alpha; // cos argument intercept
[2222134]36    const double qrst = q*radius_cap*sin_alpha; // Q*R*sin(theta)
[994d77f]37    double total = 0.0;
[5d4777d]38    for (int i=0; i<76 ;i++) {
[139c528]39        const double t = Gauss76Z[i]*zm + zb;
[994d77f]40        const double radical = 1.0 - t*t;
[26141cb]41        const double bj = sas_J1c(qrst*sqrt(radical));
[50e1e40]42        const double Fq = cos(m*t + b) * radical * bj;
[5d4777d]43        total += Gauss76Wt[i] * Fq;
44    }
45    // translate dx in [-1,1] to dx in [lower,upper]
[50e1e40]46    const double integral = total*zm;
[3a48772]47    const double cap_Fq = 2.0*M_PI*cube(radius_cap)*integral;
[50e1e40]48    return cap_Fq;
[5d4777d]49}
50
[5bddd89]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_J1c(q*radius*sin_alpha);
57    const double si = sinc(q*half_length*cos_alpha);
[3a48772]58    const double cyl_Fq = 2.0*M_PI*radius*radius*half_length*bj*si;
[5bddd89]59    const double Aq = cap_Fq + cyl_Fq;
60    return Aq;
61}
62
[2222134]63double form_volume(double radius, double radius_cap, double length)
[5d4777d]64{
65    // cap radius should never be less than radius when this is called
[34756fd]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
[50e1e40]78    //    (2R+h) => 2R+ h_c-h_c + h => 2R + (R-h)-h_c + h => 3R-h_c
[34756fd]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
[5d4777d]86    //        = pi r^2 L + pi hc (r^2 + hc^2/3)
[34756fd]87    //        = pi (r^2 (L+hc) + hc^3/3)
[2222134]88    const double hc = radius_cap - sqrt(radius_cap*radius_cap - radius*radius);
[50e1e40]89    return M_PI*(radius*radius*(length+hc) + hc*hc*hc/3.0);
[5d4777d]90}
91
[50e1e40]92double Iq(double q, double sld, double solvent_sld,
[2222134]93          double radius, double radius_cap, double length)
[5d4777d]94{
[2222134]95    const double h = sqrt(radius_cap*radius_cap - radius*radius);
[50e1e40]96    const double half_length = 0.5*length;
[5d4777d]97
[50e1e40]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;
[994d77f]101    double total = 0.0;
[5d4777d]102    for (int i=0; i<76 ;i++) {
[50e1e40]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
[5bddd89]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;
[5d4777d]110    }
111    // translate dx in [-1,1] to dx in [lower,upper]
[50e1e40]112    const double form = total * zm;
[5d4777d]113
[50e1e40]114    // Contrast
[994d77f]115    const double s = (sld - solvent_sld);
[50e1e40]116    return 1.0e-4 * s * s * form;
[5d4777d]117}
118
119
[994d77f]120double Iqxy(double qx, double qy,
[50e1e40]121    double sld, double solvent_sld, double radius,
[2222134]122    double radius_cap, double length,
[50e1e40]123    double theta, double phi)
[5d4777d]124{
[5bddd89]125    double q, sin_alpha, cos_alpha;
126    ORIENT_SYMMETRIC(qx, qy, theta, phi, q, sin_alpha, cos_alpha);
[5d4777d]127
[2222134]128    const double h = sqrt(radius_cap*radius_cap - radius*radius);
[5bddd89]129    const double Aq = _fq(q, h, radius_cap, radius, 0.5*length, sin_alpha, cos_alpha);
[50e1e40]130
131    // Multiply by contrast^2 and convert to cm-1
[994d77f]132    const double s = (sld - solvent_sld);
[50e1e40]133    return 1.0e-4 * square(s * Aq);
[5d4777d]134}
Note: See TracBrowser for help on using the repository browser.