source: sasview/sansmodels/src/sans/models/c_extensions/elliptical_cylinder.h @ 27972c1d

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 27972c1d was 27972c1d, checked in by Jae Cho <jhjcho@…>, 15 years ago

removed all non asc font in the units

  • Property mode set to 100644
File size: 2.2 KB
Line 
1#if !defined(ell_cylinder_h)
2#define ell_cylinder_h
3
4/** Structure definition for cylinder parameters
5 * [PYTHONCLASS] = EllipticalCylinderModel
6 * [DISP_PARAMS] = r_minor, r_ratio, length, cyl_theta, cyl_phi, cyl_psi
7 * [DESCRIPTION] = <text> Model parameters: r_minor = the radius of minor axis of the cross section
8r_ratio = the ratio of (r_major /r_minor >= 1)
9length = the length of the cylinder
10contrast = SLD of solvent - SLD of the cylinder
11background = incoherent background
12  *</text>
13 * [FIXED]= <text> cyl_phi.width;
14 * cyl_theta.width; cyl_psi.width; length.width; r_minor.width; r_ratio.width
15 *</text>
16 * [ORIENTATION_PARAMS]= cyl_phi; cyl_theta; cyl_psi;  cyl_phi.width; cyl_theta.width; cyl_psi.width
17 * */
18
19
20typedef struct {
21    /// Scale factor
22    //  [DEFAULT]=scale=1.0
23    double scale;
24    /// Minor radius [A]
25    //  [DEFAULT]=r_minor=20.0 [A]
26    double r_minor;
27    /// Ratio of major/minor radii
28    //  [DEFAULT]=r_ratio=1.5
29    double r_ratio;
30    /// Length of the cylinder [A]
31    //  [DEFAULT]=length=400.0 [A]
32    double length;
33    /// Contrast [1/A^(2)]
34    //  [DEFAULT]=contrast=3.0e-6 [1/A^(2)]
35    double contrast;
36        /// Incoherent Background [1/cm] 0.000
37        //  [DEFAULT]=background=0 [1/cm]
38        double background;
39    /// Orientation of the cylinder axis w/respect incoming beam [rad]
40    //  [DEFAULT]=cyl_theta=1.57 [rad]
41    double cyl_theta;
42    /// Orientation of the cylinder in the plane of the detector [rad]
43    //  [DEFAULT]=cyl_phi=0.0 [rad]
44    double cyl_phi;
45    /// Orientation of major radius of the cross-section w/respect vector q [rad]
46    //  [DEFAULT]=cyl_psi=0.0 [rad]
47    double cyl_psi;
48} EllipticalCylinderParameters;
49
50
51
52/// 1D scattering function
53double elliptical_cylinder_analytical_1D(EllipticalCylinderParameters *pars, double q);
54
55/// 2D scattering function
56double elliptical_cylinder_analytical_2D(EllipticalCylinderParameters *pars, double q, double phi);
57double elliptical_cylinder_analytical_2DXY(EllipticalCylinderParameters *pars, double qx, double qy);
58double elliptical_cylinder_analytical_2D_scaled(EllipticalCylinderParameters *pars, double q, double q_x, double q_y);
59
60#endif
Note: See TracBrowser for help on using the repository browser.