1 | #if !defined(HayterMSA_h) |
---|
2 | #define HayterMSA_h |
---|
3 | |
---|
4 | /** |
---|
5 | * Structure definition for screened Coulomb interaction |
---|
6 | */ |
---|
7 | //[PYTHONCLASS] = HayterMSAStructure |
---|
8 | //[DISP_PARAMS] = radius |
---|
9 | //[DESCRIPTION] =<text>To calculate the structure factor (the Fourier transform of the |
---|
10 | // pair correlation function g(r)) for a system of |
---|
11 | // charged, spheroidal objects in a dielectric |
---|
12 | // medium. |
---|
13 | // When combined with an appropriate form |
---|
14 | // factor, this allows for inclusion of |
---|
15 | // the interparticle interference effects |
---|
16 | // due to screened coulomb repulsion between |
---|
17 | // charged particles. |
---|
18 | // (Note: charge > 0 required.) |
---|
19 | // |
---|
20 | // Ref: JP Hansen and JB Hayter, Molecular |
---|
21 | // Physics 46, 651-656 (1982). |
---|
22 | // |
---|
23 | // </text> |
---|
24 | //[FIXED]= radius.width |
---|
25 | |
---|
26 | typedef struct { |
---|
27 | /// Radius of particle [A] |
---|
28 | // [DEFAULT]=radius=20.75 [A] |
---|
29 | double radius; |
---|
30 | |
---|
31 | /// charge |
---|
32 | // [DEFAULT]=charge= 19 |
---|
33 | double charge; |
---|
34 | |
---|
35 | /// Volume fraction |
---|
36 | // [DEFAULT]=volfraction= 0.0192 |
---|
37 | double volfraction; |
---|
38 | |
---|
39 | /// Temperature [K] |
---|
40 | // [DEFAULT]=temperature= 318.16 [K] |
---|
41 | double temperature; |
---|
42 | |
---|
43 | /// Monovalent salt concentration [M] |
---|
44 | // [DEFAULT]=saltconc= 0 [M] |
---|
45 | double saltconc; |
---|
46 | |
---|
47 | /// Dielectric constant of solvent |
---|
48 | // [DEFAULT]=dielectconst= 71.08 |
---|
49 | double dielectconst; |
---|
50 | } HayterMSAParameters; |
---|
51 | |
---|
52 | |
---|
53 | |
---|
54 | /// 1D scattering function |
---|
55 | double HayterMSA_analytical_1D(HayterMSAParameters *pars, double q); |
---|
56 | |
---|
57 | /// 2D scattering function |
---|
58 | double HayterMSA_analytical_2D(HayterMSAParameters *pars, double q, double phi); |
---|
59 | double HayterMSA_analytical_2DXY(HayterMSAParameters *pars, double qx, double qy); |
---|
60 | |
---|
61 | #endif |
---|