source: sasview/sansmodels/src/sans/models/c_extensions/elliptical_cylinder.c @ 7b0dd55

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since 7b0dd55 was 975ec8e, checked in by Jae Cho <jhjcho@…>, 15 years ago

working on 2D models. Still need smore corrections and unit tests.

  • Property mode set to 100644
File size: 4.3 KB
Line 
1/**
2 * Scattering model for a cylinder with elliptical cross-section
3 */
4
5#include "elliptical_cylinder.h"
6#include <math.h>
7#include "libCylinder.h"
8#include <stdio.h>
9#include <stdlib.h>
10
11
12/**
13 * Function to evaluate 1D scattering function
14 * @param pars: parameters of the cylinder
15 * @param q: q-value
16 * @return: function value
17 */
18double elliptical_cylinder_analytical_1D(EllipticalCylinderParameters *pars, double q) {
19        double dp[6];
20
21        // Fill paramater array
22        dp[0] = pars->scale;
23        dp[1] = pars->r_minor;
24        dp[2] = pars->r_ratio;
25        dp[3] = pars->length;
26        dp[4] = pars->contrast;
27        dp[5] = pars->background;
28
29        // Call library function to evaluate model
30        return EllipCyl20(dp, q);
31}
32
33double elliptical_cylinder_kernel(EllipticalCylinderParameters *pars, double q, double alpha, double nu) {
34        double qr;
35        double qL;
36        double Be,Si;
37        double r_major;
38        double kernel;
39
40        r_major = pars->r_ratio * pars->r_minor;
41
42        qr = q*sin(alpha)*sqrt( r_major*r_major*sin(nu)*sin(nu) + pars->r_minor*pars->r_minor*cos(nu)*cos(nu) );
43        qL = q*pars->length*cos(alpha)/2.0;
44
45        if (qr==0){
46                Be = 0.5;
47        }else{
48                Be = NR_BessJ1(qr)/qr;
49        }
50        if (qL==0){
51                Si = 1.0;
52        }else{
53                Si = sin(qL)/qL;
54        }
55
56
57        kernel = 2.0*Be * Si;
58        return kernel*kernel;
59}
60
61/**
62 * Function to evaluate 2D scattering function
63 * @param pars: parameters of the cylinder
64 * @param q: q-value
65 * @return: function value
66 */
67double elliptical_cylinder_analytical_2DXY(EllipticalCylinderParameters *pars, double qx, double qy) {
68        double q;
69        q = sqrt(qx*qx+qy*qy);
70    return elliptical_cylinder_analytical_2D_scaled(pars, q, qx/q, qy/q);
71}
72
73/**
74 * Function to evaluate 2D scattering function
75 * @param pars: parameters of the cylinder
76 * @param q: q-value
77 * @param theta: angle theta = angle wrt z axis
78 * @param phi: angle phi = angle around y axis (starting from the x+-direction as phi = 0)
79 * @return: function value
80 */
81double elliptical_cylinder_analytical_2D(EllipticalCylinderParameters *pars, double q, double phi) {
82    return elliptical_cylinder_analytical_2D_scaled(pars, q, cos(phi), sin(phi));
83}
84
85/**
86 * Function to evaluate 2D scattering function
87 * @param pars: parameters of the cylinder
88 * @param q: q-value
89 * @param q_x: q_x / q
90 * @param q_y: q_y / q
91 * @return: function value
92 */
93double elliptical_cylinder_analytical_2D_scaled(EllipticalCylinderParameters *pars, double q, double q_x, double q_y) {
94        double cyl_x, cyl_y, cyl_z;
95        double ell_x, ell_y;
96        double q_z;
97        double alpha, vol, cos_val;
98        double nu, cos_nu;
99        double answer;
100
101    //Cylinder orientation
102    cyl_x = sin(pars->cyl_theta) * cos(pars->cyl_phi);
103    cyl_y = sin(pars->cyl_theta) * sin(pars->cyl_phi);
104    cyl_z = cos(pars->cyl_theta);
105
106    // q vector
107    q_z = 0;
108
109    // Compute the angle btw vector q and the
110    // axis of the cylinder
111    cos_val = cyl_x*q_x + cyl_y*q_y + cyl_z*q_z;
112
113    // The following test should always pass
114    if (fabs(cos_val)>1.0) {
115        printf("cyl_ana_2D: Unexpected error: cos(alpha)>1\n");
116        return 0;
117    }
118
119    // Note: cos(alpha) = 0 and 1 will get an
120    // undefined value from CylKernel
121        alpha = acos( cos_val );
122
123    //ellipse orientation:
124        // the elliptical corss section was transformed and projected
125        // into the detector plane already through sin(alpha)and furthermore psi remains as same
126        // on the detector plane.
127        // So, all we need is to calculate the angle (nu) of the minor axis of the ellipse wrt
128        // the wave vector q.
129
130        //x- y- component on the detector plane.
131    ell_x =  cos(pars->cyl_psi);
132    ell_y =  sin(pars->cyl_psi);
133
134    // calculate the axis of the ellipse wrt q-coord.
135    cos_nu = ell_x*q_x + ell_y*q_y;
136    nu = acos(cos_nu);
137
138    // The following test should always pass
139    if (fabs(cos_nu)>1.0) {
140        printf("cyl_ana_2D: Unexpected error: cos(nu)>1\n");
141        return 0;
142    }
143
144        answer = elliptical_cylinder_kernel(pars, q, alpha,nu);
145
146        // Multiply by contrast^2
147        answer *= pars->contrast*pars->contrast;
148
149        //normalize by cylinder volume
150        //NOTE that for this (Fournet) definition of the integral, one must MULTIPLY by Vcyl
151    vol = acos(-1.0) * pars->r_minor * pars->r_minor * pars->r_ratio * pars->length;
152        answer *= vol;
153
154        //convert to [cm-1]
155        answer *= 1.0e8;
156
157        //Scale
158        answer *= pars->scale;
159
160        // add in the background
161        answer += pars->background;
162
163        return answer;
164}
165
Note: See TracBrowser for help on using the repository browser.