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 c451be9 was
5eb9154,
checked in by Jae Cho <jhjcho@…>, 15 years ago
|
calculation of the effective radius are added
|
-
Property mode set to
100644
|
File size:
1009 bytes
|
Line | |
---|
1 | /** |
---|
2 | * Structure factor for a hardsphere |
---|
3 | * @author: Jae Hie Cho / UTK |
---|
4 | */ |
---|
5 | |
---|
6 | #include "Hardsphere.h" |
---|
7 | #include "libStructureFactor.h" |
---|
8 | #include <math.h> |
---|
9 | #include <stdio.h> |
---|
10 | |
---|
11 | /** |
---|
12 | * Function to evaluate 1D scattering function |
---|
13 | * @param pars: parameters of the HardsphereStructure |
---|
14 | * @param q: q-value |
---|
15 | * @return: function value |
---|
16 | */ |
---|
17 | double Hardsphere_analytical_1D(HardsphereParameters *pars, double q) { |
---|
18 | double dp[2]; |
---|
19 | if (q == 0){ |
---|
20 | return 0.2; |
---|
21 | } |
---|
22 | dp[0] = pars->effect_radius; |
---|
23 | dp[1] = pars->volfraction; |
---|
24 | return HardSphereStruct(dp, q); |
---|
25 | } |
---|
26 | |
---|
27 | /** |
---|
28 | * Function to evaluate 2D scattering function |
---|
29 | * @param pars: parameters of the HardsphereStructure |
---|
30 | * @param q: q-value |
---|
31 | * @return: function value |
---|
32 | */ |
---|
33 | double Hardsphere_analytical_2D(HardsphereParameters *pars, double q, double phi) { |
---|
34 | return Hardsphere_analytical_1D(pars,q); |
---|
35 | } |
---|
36 | |
---|
37 | double Hardsphere_analytical_2DXY(HardsphereParameters *pars, double qx, double qy){ |
---|
38 | return Hardsphere_analytical_1D(pars,sqrt(qx*qx+qy*qy)); |
---|
39 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.