Changes in / [eec5fd6:4554131] in sasmodels
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/models/adsorbed_layer.py
r4f4e0d5 rf10bc52 6 6 7 7 r""" 8 This model describes the scattering from a layer of surfactant or polymer adsorbed on large, smooth, notionallyspherical particles under the conditions that (i) the particles (cores) are contrast-matched to the dispersion medium, (ii) *S(Q)* ~ 1 (ie, the particle volume fraction is dilute), (iii) the particle radius is >> layer thickness (ie, the interface is locally flat), and (iv) scattering from excess unadsorbed adsorbate in the bulk medium is absent or has been corrected for.8 This model describes the scattering from a layer of surfactant or polymer adsorbed on spherical particles under the conditions that (i) the particles (cores) are contrast-matched to the dispersion medium, (ii) *S(Q)* ~ 1 (ie, the particle volume fraction is dilute), (iii) the particle radius is >> layer thickness (ie, the interface is locally flat), and (iv) scattering from excess unadsorbed adsorbate in the bulk medium is absent or has been corrected for. 9 9 10 10 Unlike many other core-shell models, this model does not assume any form for the density distribution of the adsorbed species normal to the interface (cf, a core-shell model normally assumes the density distribution to be a homogeneous step-function). For comparison, if the thickness of a (traditional core-shell like) step function distribution is *t*, the second moment about the mean of the density distribution (ie, the distance of the centre-of-mass of the distribution from the interface), |sigma| = sqrt((*t* :sup:`2` )/12). … … 34 34 35 35 description = """ 36 Evaluates the scattering from largeparticles36 Evaluates the scattering from particles 37 37 with an adsorbed layer of surfactant or 38 38 polymer, independent of the form of the … … 42 42 43 43 # ["name", "units", default, [lower, upper], "type", "description"], 44 parameters = [["second_moment", "Ang", 23.0, [0.0, inf], "", "Second moment of polymer distribution"],45 ["adsorbed_amount", "mg/m2", 1.9, [0.0, inf], "", "Adsorbed amount of polymer"],46 ["density_ shell", "g/cm3", 0.7, [0.0, inf], "", "Bulk density of polymer in the shell"],47 ["radius", "Ang", 500.0, [0.0, inf], "", " Core particle radius"],48 ["volfraction", "None", 0.14, [0.0, inf], "", " Core particle volumefraction"],49 [" sld_shell", "1e-6/Ang^2", 1.5, [-inf, inf], "sld", "Polymer shellSLD"],50 ["s ld_solvent", "1e-6/Ang^2", 6.3, [-inf, inf], "sld", "Solvent SLD"]]44 parameters = [["second_moment", "Ang", 23.0, [0.0, inf], "", "Second moment"], 45 ["adsorbed_amount", "mg/m2", 1.9, [0.0, inf], "", "Adsorbed amount"], 46 ["density_poly", "g/cm3", 0.7, [0.0, inf], "", "Polymer density"], 47 ["radius", "Ang", 500.0, [0.0, inf], "", "Particle radius"], 48 ["volfraction", "None", 0.14, [0.0, inf], "", "Particle vol fraction"], 49 ["polymer_sld", "1/Ang^2", 1.5e-06, [-inf, inf], "", "Polymer SLD"], 50 ["solvent_sld", "1/Ang^2", 6.3e-06, [-inf, inf], "", "Solvent SLD"]] 51 51 52 52 # NB: Scale and Background are implicit parameters on every model 53 def Iq(q, second_moment, adsorbed_amount, density_ shell, radius,54 volfraction, sld_shell, sld_solvent):53 def Iq(q, second_moment, adsorbed_amount, density_poly, radius, 54 volfraction, polymer_sld, solvent_sld): 55 55 # pylint: disable = missing-docstring 56 # deltarhosqrd = (sld_shell - sld_solvent) * (sld_shell - sld_solvent) 57 # numerator = 6.0 * pi * volfraction * (adsorbed_amount * adsorbed_amount) 58 # denominator = (q * q) * (density_shell * density_shell) * radius 59 # eterm = exp(-1.0 * (q * q) * (second_moment * second_moment)) 60 # #scale by 10^-2 for units conversion to cm^-1 61 # inten = 1.0e-02 * deltarhosqrd * ((numerator / denominator) * eterm) 62 aa = (sld_shell - sld_solvent) * adsorbed_amount / q / density_shell 63 bb = q * second_moment 64 #scale by 10^-2 for units conversion to cm^-1 65 inten = 6.0e-02 * pi * volfraction * aa * aa * exp(-bb * bb) / radius 56 deltarhosqrd = (polymer_sld - solvent_sld) * (polymer_sld - solvent_sld) 57 numerator = 6.0 * pi * volfraction * (adsorbed_amount * adsorbed_amount) 58 denominator = (q * q) * (density_poly * density_poly) * radius 59 eterm = exp(-1.0 * (q * q) * (second_moment * second_moment)) 60 #scale by 10^10 for units conversion to cm^-1 61 inten = 1.0e+10 * deltarhosqrd * ((numerator / denominator) * eterm) 66 62 return inten 67 63 Iq.vectorized = True # Iq accepts an array of q values … … 75 71 second_moment = 23.0, 76 72 adsorbed_amount = 1.9, 77 density_ shell= 0.7,73 density_poly = 0.7, 78 74 radius = 500.0, 79 75 volfraction = 0.14, 80 sld_shell = 1.5,81 s ld_solvent = 6.3,76 polymer_sld = 1.5e-06, 77 solvent_sld = 6.3e-06, 82 78 background = 0.0) 83 79 … … 86 82 second_moment = 'second_moment', 87 83 adsorbed_amount = 'ads_amount', 88 density_ shell= 'density_poly',84 density_poly = 'density_poly', 89 85 radius = 'radius_core', 90 86 volfraction = 'volf_cores', 91 sld_shell= 'sld_poly',92 s ld_solvent= 'sld_solv',87 polymer_sld = 'sld_poly', 88 solvent_sld = 'sld_solv', 93 89 background = 'background') 94 90 … … 96 92 tests = [ 97 93 [{'scale': 1.0, 'second_moment': 23.0, 'adsorbed_amount': 1.9, 98 'density_ shell': 0.7, 'radius': 500.0, 'volfraction': 0.14,99 ' sld_shell': 1.5, 'sld_solvent': 6.3, 'background': 0.0},94 'density_poly': 0.7, 'radius': 500.0, 'volfraction': 0.14, 95 'polymer_sld': 1.5e-06, 'solvent_sld': 6.3e-06, 'background': 0.0}, 100 96 [0.0106939, 0.469418], [73.741, 9.65391e-53]], 101 97 ] 102 # ADDED by: SMK ON: 16Mar2016 convert from sasview, check vs SANDRA, 18Mar2016 RKH some edits & renaming
Note: See TracChangeset
for help on using the changeset viewer.