1 | #if !defined(raspberry_h) |
---|
2 | #define raspberry_h |
---|
3 | #include "parameters.hh" |
---|
4 | |
---|
5 | /** |
---|
6 | * Structure definition for RaspBerryModel parameters |
---|
7 | */ |
---|
8 | //[PYTHONCLASS] = RaspBerryModel |
---|
9 | //[DISP_PARAMS] = radius_Lsph |
---|
10 | //[DESCRIPTION] =<text> RaspBerryModel: |
---|
11 | // volf_Lsph = volume fraction large spheres |
---|
12 | // radius_Lsph = radius large sphere (A) |
---|
13 | // sld_Lsph = sld large sphere (A-2) |
---|
14 | // volf_Ssph = volume fraction small spheres |
---|
15 | // radius_Ssph = radius small sphere (A) |
---|
16 | // surfrac_Ssph = fraction of small spheres at surface |
---|
17 | // sld_Ssph = sld small sphere |
---|
18 | // delta_Ssph = small sphere penetration (A) |
---|
19 | // sld_solv = sld solvent |
---|
20 | // background = background (cm-1) |
---|
21 | // Ref: J. coll. inter. sci. (2010) vol. 343 (1) pp. 36-41. |
---|
22 | // </text> |
---|
23 | //[FIXED]= radius_Lsph.width |
---|
24 | //[ORIENTATION_PARAMS]= <text> </text> |
---|
25 | |
---|
26 | class RaspBerryModel{ |
---|
27 | public: |
---|
28 | // Model parameters |
---|
29 | /// volf_Lsph |
---|
30 | // [DEFAULT]=volf_Lsph=0.05 |
---|
31 | Parameter volf_Lsph; |
---|
32 | /// radius_Lsph [A] |
---|
33 | // [DEFAULT]=radius_Lsph= 5000.0 [A] |
---|
34 | Parameter radius_Lsph; |
---|
35 | /// sld_Lsph [1/A^(2)] |
---|
36 | // [DEFAULT]=sld_Lsph= -4.0e-7 [1/A^(2)] |
---|
37 | Parameter sld_Lsph; |
---|
38 | /// volf_Ssph |
---|
39 | // [DEFAULT]=volf_Ssph=0.005 |
---|
40 | Parameter volf_Ssph; |
---|
41 | /// radius_Ssph [A] |
---|
42 | // [DEFAULT]=radius_Ssph= 100.0 [A] |
---|
43 | Parameter radius_Ssph; |
---|
44 | /// surfrac_Ssph |
---|
45 | // [DEFAULT]=surfrac_Ssph=0.4 |
---|
46 | Parameter surfrac_Ssph; |
---|
47 | /// sld_Ssph [1/A^(2)] |
---|
48 | // [DEFAULT]=sld_Ssph= 3.5e-6 [1/A^(2)] |
---|
49 | Parameter sld_Ssph; |
---|
50 | /// delta_Ssph [A] |
---|
51 | // [DEFAULT]=delta_Ssph= 0.0 |
---|
52 | Parameter delta_Ssph; |
---|
53 | /// sld_solv [1/A^(2)] |
---|
54 | // [DEFAULT]=sld_solv= 6.3e-6 [1/A^(2)] |
---|
55 | Parameter sld_solv; |
---|
56 | /// Incoherent Background [1/cm] |
---|
57 | // [DEFAULT]=background=0.0 [1/cm] |
---|
58 | Parameter background; |
---|
59 | |
---|
60 | // Constructor |
---|
61 | RaspBerryModel(); |
---|
62 | |
---|
63 | // Operators to get I(Q) |
---|
64 | double operator()(double q); |
---|
65 | double operator()(double qx, double qy); |
---|
66 | double calculate_ER(); |
---|
67 | double calculate_VR(); |
---|
68 | double evaluate_rphi(double q, double phi); |
---|
69 | }; |
---|
70 | double raspberry_kernel(double dp[], double q); |
---|
71 | double rasp_bes(double qval, double rad); |
---|
72 | #endif |
---|