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 e2f7b92 was
ea07075,
checked in by Jae Cho <jhjcho@…>, 15 years ago
|
done corrections and 2d extension on this model function
|
-
Property mode set to
100644
|
File size:
1.4 KB
|
Rev | Line | |
---|
[5068697] | 1 | /** |
---|
| 2 | * Scattering model for a parallelepiped |
---|
| 3 | * TODO: Add 2D analysis |
---|
| 4 | */ |
---|
| 5 | |
---|
| 6 | #include "flexible_cylinder.h" |
---|
| 7 | #include <math.h> |
---|
| 8 | #include "libCylinder.h" |
---|
| 9 | #include <stdio.h> |
---|
| 10 | #include <stdlib.h> |
---|
| 11 | |
---|
| 12 | |
---|
| 13 | /** |
---|
| 14 | * Function to evaluate 1D scattering function |
---|
| 15 | * @param pars: parameters of the flexible cylinder |
---|
| 16 | * @param q: q-value |
---|
| 17 | * @return: function value |
---|
| 18 | */ |
---|
| 19 | double flexible_cylinder_analytical_1D(FlexibleCylinderParameters *pars, double q) { |
---|
| 20 | double dp[6]; |
---|
[ea07075] | 21 | |
---|
[5068697] | 22 | // Fill paramater array |
---|
| 23 | dp[0] = pars->scale; |
---|
| 24 | dp[1] = pars->length; |
---|
| 25 | dp[2] = pars->kuhn_length; |
---|
| 26 | dp[3] = pars->radius; |
---|
| 27 | dp[4] = pars->contrast; |
---|
| 28 | dp[5] = pars->background; |
---|
| 29 | |
---|
| 30 | // Call library function to evaluate model |
---|
[ea07075] | 31 | return FlexExclVolCyl(dp, q); |
---|
[5068697] | 32 | } |
---|
| 33 | /** |
---|
| 34 | * Function to evaluate 2D scattering function |
---|
| 35 | * @param pars: parameters of the flexible cylinder |
---|
| 36 | * @param q: q-value |
---|
| 37 | * @return: function value |
---|
| 38 | */ |
---|
| 39 | double flexible_cylinder_analytical_2DXY(FlexibleCylinderParameters *pars, double qx, double qy) { |
---|
| 40 | double q; |
---|
| 41 | q = sqrt(qx*qx+qy*qy); |
---|
[ea07075] | 42 | return flexible_cylinder_analytical_1D(pars, q); |
---|
| 43 | } |
---|
[5068697] | 44 | |
---|
| 45 | |
---|
| 46 | /** |
---|
| 47 | * Function to evaluate 2D scattering function |
---|
| 48 | * @param pars: parameters of the flexible cylinder |
---|
| 49 | * @param q: q-value |
---|
| 50 | * @param phi: angle phi |
---|
| 51 | * @return: function value |
---|
| 52 | */ |
---|
| 53 | double flexible_cylinder_analytical_2D(FlexibleCylinderParameters *pars, double q, double phi) { |
---|
[ea07075] | 54 | return flexible_cylinder_analytical_1D(pars, q); |
---|
[5068697] | 55 | } |
---|
[ea07075] | 56 | |
---|
[5068697] | 57 | |
---|
Note: See
TracBrowser
for help on using the repository browser.