[5068697] | 1 | /* |
---|
| 2 | TODO: Add 2D model |
---|
| 3 | */ |
---|
| 4 | |
---|
| 5 | #if !defined(stacked_disks_h) |
---|
| 6 | #define stacked_disks_h |
---|
| 7 | /** Structure definition for stacked disks parameters |
---|
| 8 | * [PYTHONCLASS] = StackedDisksModel |
---|
[975ec8e] | 9 | * [DISP_PARAMS] = core_thick, layer_thick, radius, axis_theta, axis_phi |
---|
[7ad9887] | 10 | [DESCRIPTION] = <text> One layer of disk consists of a core, a top layer, and a bottom layer. |
---|
| 11 | radius = the radius of the disk |
---|
| 12 | core_thick = thickness of the core |
---|
| 13 | layer_thick = thickness of a layer |
---|
| 14 | core_sld = the SLD of the core |
---|
| 15 | layer_sld = the SLD of the layers |
---|
| 16 | n_stacking = the number of the disks |
---|
| 17 | sigma_d = Gaussian STD of d-spacing |
---|
| 18 | solvent_sld = the SLD of the solvent |
---|
[5068697] | 19 | </text> |
---|
[975ec8e] | 20 | [FIXED]= <text>core_thick.width;layer_thick.width; radius.width; axis_theta.width; axis_phi.width</text> |
---|
[5068697] | 21 | [ORIENTATION_PARAMS]= <text>axis_phi; axis_theta; axis_phi.width; axis_theta.width</text> |
---|
| 22 | |
---|
| 23 | |
---|
| 24 | **/ |
---|
| 25 | typedef struct { |
---|
| 26 | /// Scale factor |
---|
| 27 | // [DEFAULT]=scale=0.01 |
---|
| 28 | double scale; |
---|
| 29 | /// radius of the staked disk [A] |
---|
| 30 | // [DEFAULT]=radius=3000 [A] |
---|
| 31 | double radius; |
---|
[975ec8e] | 32 | /// Thickness of the core disk [A] |
---|
| 33 | // [DEFAULT]=core_thick=10.0 [A] |
---|
| 34 | double core_thick; |
---|
[5068697] | 35 | /// Thickness of the staked disk [A] |
---|
[975ec8e] | 36 | // [DEFAULT]=layer_thick=15.0 [A] |
---|
| 37 | double layer_thick; |
---|
[27972c1d] | 38 | /// Core scattering length density[1/A^(2)] |
---|
| 39 | // [DEFAULT]=core_sld=4e-6 [1/A^(2)] |
---|
[5068697] | 40 | double core_sld; |
---|
[27972c1d] | 41 | /// layer scattering length density[1/A^(2)] |
---|
| 42 | // [DEFAULT]=layer_sld=-4e-7 [1/A^(2)] |
---|
[5068697] | 43 | double layer_sld; |
---|
[27972c1d] | 44 | /// solvent scattering length density[1/A^(2)] |
---|
| 45 | // [DEFAULT]=solvent_sld=5.0e-6 [1/A^(2)] |
---|
[5068697] | 46 | double solvent_sld; |
---|
[975ec8e] | 47 | /// number of stacking |
---|
| 48 | // [DEFAULT]=n_stacking=1 |
---|
| 49 | double n_stacking; |
---|
| 50 | /// GSD of disks sigma_d |
---|
| 51 | // [DEFAULT]=sigma_d=0 |
---|
| 52 | double sigma_d; |
---|
| 53 | /// Incoherent Background [1/cm] |
---|
[5068697] | 54 | // [DEFAULT]=background=0.001 [1/cm] |
---|
| 55 | double background; |
---|
| 56 | /// Orientation of the staked disk axis w/respect incoming beam [rad] |
---|
[975ec8e] | 57 | // [DEFAULT]=axis_theta=0.0 [rad] |
---|
[5068697] | 58 | double axis_theta; |
---|
| 59 | /// Orientation of the staked disk in the plane of the detector [rad] |
---|
[975ec8e] | 60 | // [DEFAULT]=axis_phi=0.0 [rad] |
---|
[5068697] | 61 | double axis_phi; |
---|
| 62 | |
---|
| 63 | |
---|
| 64 | } StackedDisksParameters; |
---|
| 65 | |
---|
| 66 | |
---|
| 67 | |
---|
| 68 | /// 1D scattering function |
---|
| 69 | double stacked_disks_analytical_1D(StackedDisksParameters *pars, double q); |
---|
| 70 | |
---|
| 71 | /// 2D scattering function |
---|
| 72 | double stacked_disks_analytical_2D(StackedDisksParameters *pars, double q, double phi); |
---|
| 73 | double stacked_disks_analytical_2DXY(StackedDisksParameters *pars, double qx, double qy); |
---|
| 74 | double stacked_disks_analytical_2D_scaled(StackedDisksParameters *pars, double q, double q_x, double q_y); |
---|
| 75 | |
---|
| 76 | #endif |
---|