1 | #if !defined(capcyl_h) |
---|
2 | #define capcyl_h |
---|
3 | #include "parameters.hh" |
---|
4 | |
---|
5 | /** |
---|
6 | * Structure definition for CappedCylinder parameters |
---|
7 | */ |
---|
8 | //[PYTHONCLASS] = CappedCylinderModel |
---|
9 | //[DISP_PARAMS] = rad_cyl,len_cyl,rad_cap,phi, theta |
---|
10 | //[DESCRIPTION] =<text>Calculates the scattering from a cylinder with spherical section end-caps. |
---|
11 | // That is, a sphereocylinder |
---|
12 | // with end caps that have a radius larger than |
---|
13 | // that of the cylinder and the center of the |
---|
14 | // end cap radius lies within the cylinder. |
---|
15 | // Note: As the length of cylinder -->0, |
---|
16 | // it becomes a ConvexLens. |
---|
17 | // It must be that rad_cyl <(=) rad_cap. |
---|
18 | // [Parameters]; |
---|
19 | // scale: volume fraction of spheres, |
---|
20 | // background:incoherent background, |
---|
21 | // rad_cyl: radius of the cylinder, |
---|
22 | // len_cyl: length of the cylinder, |
---|
23 | // rad_cap: radius of the semi-spherical cap, |
---|
24 | // sld_capcyl: SLD of the capped cylinder, |
---|
25 | // sld_solv: SLD of the solvent. |
---|
26 | // </text> |
---|
27 | //[FIXED]= rad_cyl.width;len_cyl;rad_cap;phi.width; theta.width |
---|
28 | //[ORIENTATION_PARAMS]= <text> phi; theta; phi.width; theta.width</text> |
---|
29 | |
---|
30 | class CappedCylinderModel{ |
---|
31 | public: |
---|
32 | // Model parameters |
---|
33 | /// Scale factor |
---|
34 | // [DEFAULT]=scale= 1.0 |
---|
35 | Parameter scale; |
---|
36 | |
---|
37 | /// rad_cyl [A] |
---|
38 | // [DEFAULT]=rad_cyl=20.0 [A] |
---|
39 | Parameter rad_cyl; |
---|
40 | |
---|
41 | /// length of the cylinder |
---|
42 | // [DEFAULT]=len_cyl=400.0 [A] |
---|
43 | Parameter len_cyl; |
---|
44 | |
---|
45 | /// Radius of sphere [A] |
---|
46 | // [DEFAULT]=rad_cap=40.0 [A] |
---|
47 | Parameter rad_cap; |
---|
48 | |
---|
49 | /// sld_capcyl [1/A^(2)] |
---|
50 | // [DEFAULT]=sld_capcyl= 1.0e-6 [1/A^(2)] |
---|
51 | Parameter sld_capcyl; |
---|
52 | |
---|
53 | /// sld_solv [1/A^(2)] |
---|
54 | // [DEFAULT]=sld_solv= 6.3e-6 [1/A^(2)] |
---|
55 | Parameter sld_solv; |
---|
56 | |
---|
57 | /// Incoherent Background [1/cm] |
---|
58 | // [DEFAULT]=background=0.0 [1/cm] |
---|
59 | Parameter background; |
---|
60 | |
---|
61 | /// Angle of the main axis against z-axis in detector plane [deg] |
---|
62 | // [DEFAULT]=theta=0.0 [deg] |
---|
63 | Parameter theta; |
---|
64 | |
---|
65 | /// Azimuthal angle around z-axis in detector plane [deg] |
---|
66 | // [DEFAULT]=phi=0.0 [deg] |
---|
67 | Parameter phi; |
---|
68 | |
---|
69 | // Constructor |
---|
70 | CappedCylinderModel(); |
---|
71 | |
---|
72 | // Operators to get I(Q) |
---|
73 | double operator()(double q); |
---|
74 | double operator()(double qx, double qy); |
---|
75 | double calculate_ER(); |
---|
76 | double calculate_VR(); |
---|
77 | double evaluate_rphi(double q, double phi); |
---|
78 | }; |
---|
79 | |
---|
80 | #endif |
---|