source: sasmodels/sasmodels/models/capped_cylinder.c @ 99658f6

core_shell_microgelsmagnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 99658f6 was 99658f6, checked in by grethevj, 5 years ago

updated ER functions including cylinder excluded volume, to match 4.x

  • Property mode set to 100644
File size: 6.0 KB
RevLine 
[2222134]1#define INVALID(v) (v.radius_cap < v.radius)
[2f5c6d4]2
[5d4777d]3// Integral over a convex lens kernel for t in [h/R,1].  See the docs for
4// the definition of the function being integrated.
5//   q is the magnitude of the q vector.
6//   h is the length of the lens "inside" the cylinder.  This negative wrt the
7//       definition of h in the docs.
[2222134]8//   radius_cap is the radius of the lens
[5d4777d]9//   length is the cylinder length, or the separation between the lens halves
[2a0b2b1]10//   theta is the angle of the cylinder wrt q.
[50e1e40]11static double
[2a0b2b1]12_cap_kernel(double qab, double qc, double h, double radius_cap,
[becded3]13    double half_length)
[5d4777d]14{
[50e1e40]15    // translate a point in [-1,1] to a point in [lower,upper]
[994d77f]16    const double upper = 1.0;
[2222134]17    const double lower = h/radius_cap; // integral lower bound
[139c528]18    const double zm = 0.5*(upper-lower);
19    const double zb = 0.5*(upper+lower);
[50e1e40]20
[f4cf580]21    // cos term in integral is:
[2a0b2b1]22    //    cos (q (R t - h + L/2) cos(theta))
[f4cf580]23    // so turn it into:
24    //    cos (m t + b)
25    // where:
[2a0b2b1]26    //    m = q R cos(theta)
27    //    b = q(L/2-h) cos(theta)
28    const double m = radius_cap*qc; // cos argument slope
29    const double b = (half_length-h)*qc; // cos argument intercept
30    const double qab_r = radius_cap*qab; // Q*R*sin(theta)
[994d77f]31    double total = 0.0;
[74768cb]32    for (int i=0; i<GAUSS_N; i++) {
33        const double t = GAUSS_Z[i]*zm + zb;
[994d77f]34        const double radical = 1.0 - t*t;
[2a0b2b1]35        const double bj = sas_2J1x_x(qab_r*sqrt(radical));
[50e1e40]36        const double Fq = cos(m*t + b) * radical * bj;
[74768cb]37        total += GAUSS_W[i] * Fq;
[5d4777d]38    }
39    // translate dx in [-1,1] to dx in [lower,upper]
[50e1e40]40    const double integral = total*zm;
[3a48772]41    const double cap_Fq = 2.0*M_PI*cube(radius_cap)*integral;
[50e1e40]42    return cap_Fq;
[5d4777d]43}
44
[5bddd89]45static double
[2a0b2b1]46_fq(double qab, double qc, double h, double radius_cap, double radius, double half_length)
[5bddd89]47{
[2a0b2b1]48    const double cap_Fq = _cap_kernel(qab, qc, h, radius_cap, half_length);
49    const double bj = sas_2J1x_x(radius*qab);
50    const double si = sas_sinx_x(half_length*qc);
[3a48772]51    const double cyl_Fq = 2.0*M_PI*radius*radius*half_length*bj*si;
[5bddd89]52    const double Aq = cap_Fq + cyl_Fq;
53    return Aq;
54}
55
[becded3]56static double
57form_volume(double radius, double radius_cap, double length)
[5d4777d]58{
59    // cap radius should never be less than radius when this is called
[34756fd]60
61    // Note: volume V = 2*V_cap + V_cyl
62    //
63    // V_cyl = pi r_cyl^2 L
64    // 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)
65    //
66    // The docs for capped cylinder give the volume as:
67    //    V = pi r^2 L + 2/3 pi (R-h)^2 (2R + h)
68    // where r_cap=R and h = R - h_c.
69    //
70    // The first part is clearly V_cyl.  The second part requires some work:
71    //    (R-h)^2 => h_c^2
[50e1e40]72    //    (2R+h) => 2R+ h_c-h_c + h => 2R + (R-h)-h_c + h => 3R-h_c
[34756fd]73    // And so:
74    //    2/3 pi (R-h)^2 (2R + h) => 2/3 pi h_c^2 (3 r_cap - h_c)
75    // which is 2 V_cap, using the second form above.
76    //
77    // In this function we are going to use the first form of V_cap
78    //
79    //      V = V_cyl + 2 V_cap
[5d4777d]80    //        = pi r^2 L + pi hc (r^2 + hc^2/3)
[34756fd]81    //        = pi (r^2 (L+hc) + hc^3/3)
[2222134]82    const double hc = radius_cap - sqrt(radius_cap*radius_cap - radius*radius);
[50e1e40]83    return M_PI*(radius*radius*(length+hc) + hc*hc*hc/3.0);
[5d4777d]84}
85
[d277229]86static double
[99658f6]87radius_from_excluded_volume(double radius, double radius_cap, double length)
88{
89    const double hc = radius_cap - sqrt(radius_cap*radius_cap - radius*radius);
90    const double length_tot = length + 2.0*hc;
91    return 0.5*cbrt(0.75*radius*(2.0*radius*length_tot + (radius + length_tot)*(M_PI*radius + length_tot)));
92}
93
94static double
[d277229]95radius_from_volume(double radius, double radius_cap, double length)
96{
97    const double vol_cappedcyl = form_volume(radius,radius_cap,length);
[6d5601c]98    return cbrt(vol_cappedcyl/M_4PI_3);
[d277229]99}
100
101static double
102radius_from_totallength(double radius, double radius_cap, double length)
103{
104    const double hc = radius_cap - sqrt(radius_cap*radius_cap - radius*radius);
105    return 0.5*length + hc;
106}
107
108static double
109effective_radius(int mode, double radius, double radius_cap, double length)
110{
[ee60aa7]111    switch (mode) {
[d42dd4a]112    default:
[99658f6]113    case 1: // equivalent cylinder excluded volume
114        return radius_from_excluded_volume(radius, radius_cap, length);
115    case 2: // equivalent volume sphere
[d277229]116        return radius_from_volume(radius, radius_cap, length);
[99658f6]117    case 3: // radius
[d277229]118        return radius;
[99658f6]119    case 4: // half length
[d277229]120        return 0.5*length;
[99658f6]121    case 5: // half total length
[d277229]122        return radius_from_totallength(radius, radius_cap,length);
123    }
124}
125
[71b751d]126static void
127Fq(double q,double *F1, double *F2, double sld, double solvent_sld,
[becded3]128    double radius, double radius_cap, double length)
[5d4777d]129{
[2222134]130    const double h = sqrt(radius_cap*radius_cap - radius*radius);
[50e1e40]131    const double half_length = 0.5*length;
[5d4777d]132
[50e1e40]133    // translate a point in [-1,1] to a point in [0, pi/2]
134    const double zm = M_PI_4;
135    const double zb = M_PI_4;
[71b751d]136    double total_F1 = 0.0;
137    double total_F2 = 0.0;
[74768cb]138    for (int i=0; i<GAUSS_N ;i++) {
139        const double theta = GAUSS_Z[i]*zm + zb;
[2a0b2b1]140        double sin_theta, cos_theta; // slots to hold sincos function output
141        SINCOS(theta, sin_theta, cos_theta);
142        const double qab = q*sin_theta;
143        const double qc = q*cos_theta;
144        const double Aq = _fq(qab, qc, h, radius_cap, radius, half_length);
145        // scale by sin_theta for spherical coord integration
[71b751d]146        total_F1 += GAUSS_W[i] * Aq * sin_theta;
147        total_F2 += GAUSS_W[i] * Aq * Aq * sin_theta;
[5d4777d]148    }
149    // translate dx in [-1,1] to dx in [lower,upper]
[71b751d]150    const double form_avg = total_F1 * zm;
151    const double form_squared_avg = total_F2 * zm;
[5d4777d]152
[50e1e40]153    // Contrast
[994d77f]154    const double s = (sld - solvent_sld);
[71b751d]155    *F1 = 1.0e-2 * s * form_avg;
156    *F2 = 1.0e-4 * s * s * form_squared_avg;
[5d4777d]157}
158
159
[becded3]160static double
[108e70e]161Iqac(double qab, double qc,
[50e1e40]162    double sld, double solvent_sld, double radius,
[becded3]163    double radius_cap, double length)
[5d4777d]164{
[2222134]165    const double h = sqrt(radius_cap*radius_cap - radius*radius);
[2a0b2b1]166    const double Aq = _fq(qab, qc, h, radius_cap, radius, 0.5*length);
[50e1e40]167
168    // Multiply by contrast^2 and convert to cm-1
[994d77f]169    const double s = (sld - solvent_sld);
[50e1e40]170    return 1.0e-4 * square(s * Aq);
[5d4777d]171}
Note: See TracBrowser for help on using the repository browser.