source: sasmodels/sasmodels/models/hardsphere.py @ 56fac50

core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 56fac50 was 97e6d3c, checked in by richardh, 8 years ago

made hardsphere faster

  • Property mode set to 100644
File size: 5.6 KB
RevLine 
[301e096]1# Note: model title and parameter table are inserted automatically
[529b8b4]2r"""Calculate the interparticle structure factor for monodisperse
3spherical particles interacting through hard sphere (excluded volume)
4interactions.
[301e096]5
[529b8b4]6The calculation uses the Percus-Yevick closure where the interparticle
7potential is
[301e096]8
[eb69cce]9.. math::
[529b8b4]10
11    U(r) = \begin{cases}
12    \infty & r < 2R \\
13    0 & r \geq 2R
14    \end{cases}
[301e096]15
[eb69cce]16where $r$ is the distance from the center of the sphere of a radius $R$.
[301e096]17
18For a 2D plot, the wave transfer is defined as
19
20.. math::
21
[529b8b4]22    q = \sqrt{q_x^2 + q_y^2}
[301e096]23
24
[7ed702f]25.. figure:: img/hardSphere_1d.jpg
[301e096]26
[eb69cce]27    1D plot using the default values (in linear scale).
[301e096]28
[eb69cce]29References
30----------
[301e096]31
32J K Percus, J Yevick, *J. Phys. Rev.*, 110, (1958) 1
33"""
34
[3c56da87]35from numpy import inf
[301e096]36
[f0fb9fe]37name = "hardsphere_fish"
38title = "Hard sphere structure factor from FISH, with Percus-Yevick closure"
[301e096]39description = """\
[3e428ec]40    [Hard sphere structure factor, with Percus-Yevick closure]
[301e096]41        Interparticle S(Q) for random, non-interacting spheres.
[3e428ec]42    May be a reasonable approximation for other shapes of
43    particles that freely rotate, and for moderately polydisperse
44        systems. Though strictly the maths needs to be modified -
45    which sasview does not do yet.
46    effect_radius is the hard sphere radius
47    volfraction is the volume fraction occupied by the spheres.
[301e096]48"""
[a5d0d00]49category = "structure-factor"
[301e096]50
[3e428ec]51#             ["name", "units", default, [lower, upper], "type","description"],
52parameters = [["effect_radius", "Ang", 50.0, [0, inf], "volume",
53               "effective radius of hard sphere"],
54              ["volfraction", "", 0.2, [0, 0.74], "",
55               "volume fraction of hard spheres"],
56             ]
[301e096]57
58# No volume normalization despite having a volume parameter
59# This should perhaps be volume normalized?
60form_volume = """
61    return 1.0;
62    """
63
64Iq = """
[f0fb9fe]65      double D,A,B,G,X,X2,X4,S,C,FF,HARDSPH;
66
67      if(fabs(effect_radius) < 1.E-12) {
68               HARDSPH=1.0;
69               return(HARDSPH);
70      }
[97e6d3c]71      // removing use of pow(xxx,2) and rearranging the calcs of A, B & G cut ~40% off execution time ( 0.5 to 0.3 msec)
72      X = 1.0/( 1.0 -volfraction);
73      D= X*X;
74      A= (1.+2.*volfraction)*D;
75      A *=A;
[f0fb9fe]76      X=fabs(q*effect_radius*2.0);
77
78      if(X < 5.E-06) {
79                 HARDSPH=1./A;
80                 return(HARDSPH);
81      }
[97e6d3c]82      X2 =X*X;
83      B = (1.0 +0.5*volfraction)*D;
84      B *= B;
85      B *= -6.*volfraction;
[f0fb9fe]86      G=0.5*volfraction*A;
87
88      if(X < 0.2) {
[97e6d3c]89      // RKH Feb 2016, use Taylor series expansion for small X, IT IS VERY PICKY ABOUT THE X CUT OFF VALUE, ought to be lower in double.
90      // else no obvious way to rearrange the equations to avoid needing a very high number of significant figures.
[f0fb9fe]91      // Series expansion found using Mathematica software. Numerical test in .xls showed terms to X^2 are sufficient
[97e6d3c]92      // for 5 or 6 significant figures, but I put the X^4 one in anyway
93            //FF = 8*A +6*B + 4*G - (0.8*A +2.0*B/3.0 +0.5*G)*X2 +(A/35. +B/40. +G/50.)*X4;
94            // refactoring the polynomial makes it very slightly faster (0.5 not 0.6 msec)
95            //FF = 8*A +6*B + 4*G + ( -0.8*A -2.0*B/3.0 -0.5*G +(A/35. +B/40. +G/50.)*X2)*X2;
96
97            FF = 8.0*A +6.0*B + 4.0*G + ( -0.8*A -B/1.5 -0.5*G +(A/35. +0.0125*B +0.02*G)*X2)*X2;
98
[f0fb9fe]99            // combining the terms makes things worse at smallest Q in single precision
100            //FF = (8-0.8*X2)*A +(3.0-X2/3.)*2*B + (4+0.5*X2)*G +(A/35. +B/40. +G/50.)*X4;
101            // note that G = -volfraction*A/2, combining this makes no further difference at smallest Q
[97e6d3c]102            //FF = (8 +2.*volfraction + ( volfraction/4. -0.8 +(volfraction/100. -1./35.)*X2 )*X2 )*A  + (3.0 -X2/3. +X4/40.)*2.*B;
[f0fb9fe]103            HARDSPH= 1./(1. + volfraction*FF );
104            return(HARDSPH);
105      }
[97e6d3c]106      X4=X2*X2;
[f0fb9fe]107      SINCOS(X,S,C);
108
[97e6d3c]109// RKH Feb 2016, use version FISH code as is better than original sasview one at small Q in single precision, and more than twice as fast in double.
110      //FF=A*(S-X*C)/X + B*(2.*X*S -(X2-2.)*C -2.)/X2 + G*( (4.*X2*X -24.*X)*S -(X4 -12.*X2 +24.)*C +24. )/X4;
111      // refactoring the polynomial here & above makes it slightly faster
112
113      FF=  (( G*( (4.*X2 -24.)*X*S -(X4 -12.*X2 +24.)*C +24. )/X2 + B*(2.*X*S -(X2-2.)*C -2.) )/X + A*(S-X*C))/X ;
[f0fb9fe]114      HARDSPH= 1./(1. + 24.*volfraction*FF/X2 );
115
[97e6d3c]116      // changing /X and /X2 to *MX1 and *MX2, no significantg difference?
117      //MX=1.0/X;
118      //MX2=MX*MX;
119      //FF=  (( G*( (4.*X2 -24.)*X*S -(X4 -12.*X2 +24.)*C +24. )*MX2 + B*(2.*X*S -(X2-2.)*C -2.) )*MX + A*(S-X*C)) ;
120      //HARDSPH= 1./(1. + 24.*volfraction*FF*MX2*MX );
121
122// grouping the terms, was about same as sasmodels for single precision issues
[f0fb9fe]123//     FF=A*(S/X-C) + B*(2.*S/X - C +2.0*(C-1.0)/X2) + G*( (4./X -24./X3)*S -(1.0 -12./X2 +24./X4)*C +24./X4 );
124//     HARDSPH= 1./(1. + 24.*volfraction*FF/X2 );
125// remove 1/X2 from final line, take more powers of X inside the brackets, stil bad
126//      FF=A*(S/X3-C/X2) + B*(2.*S/X3 - C/X2 +2.0*(C-1.0)/X4) + G*( (4./X -24./X3)*S -(1.0 -12./X2 +24./X4)*C +24./X4 )/X2;
127//      HARDSPH= 1./(1. + 24.*volfraction*FF );
128      return(HARDSPH);
[301e096]129   """
130
131Iqxy = """
132    // never called since no orientation or magnetic parameters.
[529b8b4]133    return Iq(sqrt(qx*qx+qy*qy), IQ_PARAMETERS);
[301e096]134    """
135
136# ER defaults to 0.0
137# VR defaults to 1.0
138
[3e428ec]139demo = dict(effect_radius=200, volfraction=0.2, effect_radius_pd=0.1, effect_radius_pd_n=40)
[301e096]140oldname = 'HardsphereStructure'
141oldpars = dict()
[093f754]142# Q=0.001 is in the Taylor series, low Q part, so add Q=0.1, assuming double precision sasview is correct
[7f47777]143tests = [
144        [ {'scale': 1.0, 'background' : 0.0, 'effect_radius' : 50.0, 'volfraction' : 0.2,
[093f754]145           'effect_radius_pd' : 0}, [0.001,0.1], [0.209128,0.930587]]
[7f47777]146        ]
147
Note: See TracBrowser for help on using the repository browser.