source: sasview/sansmodels/src/sans/models/c_extensions/cylinder.h @ 847091f

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 847091f was 70faf5d, checked in by Jae Cho <jhjcho@…>, 15 years ago

changed notation of units

  • Property mode set to 100644
File size: 2.0 KB
RevLine 
[ae3ce4e]1#if !defined(cylinder_h)
2#define cylinder_h
[af03ddd]3/** Structure definition for cylinder parameters
[ae3ce4e]4 * [PYTHONCLASS] = CylinderModel
[af03ddd]5 * [DISP_PARAMS] = radius, length, cyl_theta, cyl_phi
[4d3acb6]6   [DESCRIPTION] = <text>P(q,alpha)= scale/V*f(q)^(2)+bkg
[70faf5d]7                                f(q)= 2*(scatter_sld - solvent_sld)*V
8                                *sin(qLcos(alpha/2))/[qLcos(alpha/2)]
9                                *J1(qRsin(alpha/2))/[qRsin(alpha)]
10                                V: Volume of the cylinder
11                                R: Radius of the cylinder
12                                L: Length of the cylinder
13                                J1: The bessel function
14                                alpha: angle betweenthe axis of the cylinder
15                                and the q-vector for 1D:the ouput is
16                                P(q)=scale/V*integral from pi/2 to zero of
17                                f(q)^(2)*sin(alpha)*dalpha+ bkg
[96672c0]18                                        </text>
[25a608f5]19        [FIXED]= <text>cyl_phi.width; cyl_theta.width; length.width;radius.width</text>
20        [ORIENTATION_PARAMS]= <text>cyl_phi; cyl_theta; cyl_phi.width; cyl_theta.width</text>
[70faf5d]21
[25a608f5]22
[92320e5]23 **/
[ae3ce4e]24typedef struct {
[af03ddd]25    /// Scale factor
[ae3ce4e]26    //  [DEFAULT]=scale=1.0
27    double scale;
[70faf5d]28    /// Radius of the cylinder [Å]
29    //  [DEFAULT]=radius=20.0 [Å]
[ae3ce4e]30    double radius;
[70faf5d]31    /// Length of the cylinder [Å]
32    //  [DEFAULT]=length=400.0 [Å]
[ae3ce4e]33    double length;
[70faf5d]34    /// Contrast [1/Ų]
35    //  [DEFAULT]=contrast=3.0e-6 [1/Ų]
[ae3ce4e]36    double contrast;
[70faf5d]37        /// Incoherent Background [1/cm] 0.00
38        //  [DEFAULT]=background=0.0 [1/cm]
[af03ddd]39        double background;
[ae3ce4e]40    /// Orientation of the cylinder axis w/respect incoming beam [rad]
[70faf5d]41    //  [DEFAULT]=cyl_theta=1.0 [rad]
[ae3ce4e]42    double cyl_theta;
43    /// Orientation of the cylinder in the plane of the detector [rad]
[70faf5d]44    //  [DEFAULT]=cyl_phi=1.0 [rad]
[af03ddd]45    double cyl_phi;
[70faf5d]46
[ae3ce4e]47} CylinderParameters;
48
49
50
51/// 1D scattering function
52double cylinder_analytical_1D(CylinderParameters *pars, double q);
53
54/// 2D scattering function
55double cylinder_analytical_2D(CylinderParameters *pars, double q, double phi);
56double cylinder_analytical_2DXY(CylinderParameters *pars, double qx, double qy);
57double cylinder_analytical_2D_scaled(CylinderParameters *pars, double q, double q_x, double q_y);
58
59#endif
Note: See TracBrowser for help on using the repository browser.