- Categories
- Cylinder
- Cylinder
- cylinder.py
Cylinder - cylinder.py
# cylinder model
# Note: model title and parameter table are inserted automatically
r"""
For information about polarised and magnetic scattering, see
the :ref:`magnetism` documentation.
Definition
----------
The output of the 2D scattering intensity function for oriented cylinders is
given by (Guinier, 1955)
.. math::
P(q,alpha) = frac{ ext{scale}}{V} F^2(q,alpha).sin(alpha) + ext{background}
where
.. math::
F(q,alpha) = 2 (Delta
ho) V
frac{sin left( frac12 qLcosalpha
ight)}
{ frac12 qL cos alpha}
frac{J_1 left(q R sin alpha
ight)}{q R sin alpha}
and $alpha$ is the angle between the axis of the cylinder and $vec q$, $V =pi R^2L$
is the volume of the cylinder, $L$ is the length of the cylinder, $R$ is the
radius of the cylinder, and $Delta
ho$ (contrast) is the scattering length
density difference between the scatterer and the solvent. $J_1$ is the
first order Bessel function.
For randomly oriented particles:
.. math::
F^2(q)=int_{0}^{pi/2}{F^2(q,alpha)sin(alpha)dalpha}=int_{0}^{1}{F^2(q,u)du}
Numerical integration is simplified by a change of variable to $u = cos(alpha)$ with
$sin(alpha)=sqrt{1-u^2}$.
The output of the 1D scattering intensity function for randomly oriented
cylinders is thus given by
.. math::
P(q) = frac{ ext{scale}}{V}
int_0^{pi/2} F^2(q,alpha) sin alpha dalpha + ext{background}
NB: The 2nd virial coefficient of the cylinder is calculated based on the
radius and length values, and used as the effective radius for $S(q)$
when $P(q) cdot S(q)$ is applied.
For 2d scattering from oriented cylinders, we define the direction of the
axis of the cylinder using two angles $ heta$ (note this is not the
same as the scattering angle used in q) and $phi$. Those angles
are defined in :numref:`cylinder-angle-definition` , for further details see :ref:`orientation` .
.. _cylinder-angle-definition:
.. figure:: img/cylinder_angle_definition.png
Angles $ heta$ and $phi$ orient the cylinder relative
to the beam line coordinates, where the beam is along the $z$ axis. Rotation $ heta$, initially
in the $xz$ plane, is carried out first, then rotation $phi$ about the $z$ axis. Orientation distributions
are described as rotations about two perpendicular axes $delta_1$ and $delta_2$
in the frame of the cylinder itself, which when $ heta = phi = 0$ are parallel to the $Y$ and $X$ axes.
.. figure:: img/cylinder_angle_projection.png
Examples for oriented cylinders.
The $ heta$ and $phi$ parameters to orient the cylinder only appear in the model when fitting 2d data.
Validation
----------
Validation of the code was done by comparing the output of the 1D model
to the output of the software provided by the NIST (Kline, 2006).
The implementation of the intensity for fully oriented cylinders was done
by averaging over a uniform distribution of orientations using
.. math::
P(q) = int_0^{pi/2} dphi
int_0^pi p( heta) P_0(q, heta) sin heta d heta
where $p( heta,phi) = 1$ is the probability distribution for the orientation
and $P_0(q, heta)$ is the scattering intensity for the fully oriented
system, and then comparing to the 1D result.
References
----------
.. [#] J. Pedersen, *Adv. Colloid Interface Sci.*, 70 (1997) 171-210
.. [#] G. Fournet, *Bull. Soc. Fr. Mineral. Cristallogr.*, 74 (1951) 39-113
.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659
Authorship and Verification
----------------------------
* **Author:**
* **Last Modified by:**
* **Last Reviewed by:**
"""
import numpy as np # type: ignore
from numpy import pi, inf # type: ignore
name = "cylinder"
title = "Right circular cylinder with uniform scattering length density."
description = """
f(q,alpha) = 2*(sld - sld_solvent)*V*sin(qLcos(alpha)/2))
/[qLcos(alpha)/2]*J1(qRsin(alpha))/[qRsin(alpha)]
P(q,alpha)= scale/V*f(q,alpha)^(2)+background
V: Volume of the cylinder
R: Radius of the cylinder
L: Length of the cylinder
J1: The bessel function
alpha: angle between the axis of the
cylinder and the q-vector for 1D
:the ouput is P(q)=scale/V*integral
from pi/2 to zero of...
f(q,alpha)^(2)*sin(alpha)*dalpha + background
"""
category = "shape:cylinder"
# [ "name", "units", default, [lower, upper], "type", "description"],
parameters = [["sld", "1e-6/Ang^2", 4, [-inf, inf], "sld",
"Cylinder scattering length density"],
["sld_solvent", "1e-6/Ang^2", 1, [-inf, inf], "sld",
"Solvent scattering length density"],
["radius", "Ang", 20, [0, inf], "volume",
"Cylinder radius"],
["length", "Ang", 400, [0, inf], "volume",
"Cylinder length"],
["theta", "degrees", 60, [-360, 360], "orientation",
"cylinder axis to beam angle"],
["phi", "degrees", 60, [-360, 360], "orientation",
"rotation about beam"],
]
source = ["lib/polevl.c", "lib/sas_J1.c", "lib/gauss76.c", "cylinder.c"]
have_Fq = True
radius_effective_modes = [
"excluded volume", "equivalent volume sphere", "radius",
"half length", "half min dimension", "half max dimension", "half diagonal",
]
def random():
"""Return a random parameter set for the model."""
volume = 10**np.random.uniform(5, 12)
length = 10**np.random.uniform(-2, 2)*volume**0.333
radius = np.sqrt(volume/length/np.pi)
pars = dict(
#scale=1,
#background=0,
length=length,
radius=radius,
)
return pars
# parameters for demo
demo = dict(scale=1, background=0,
sld=6, sld_solvent=1,
radius=20, length=300,
theta=60, phi=60,
radius_pd=.2, radius_pd_n=9,
length_pd=.2, length_pd_n=10,
theta_pd=10, theta_pd_n=5,
phi_pd=10, phi_pd_n=5)
# Test 1-D and 2-D models
qx, qy = 0.2 * np.cos(2.5), 0.2 * np.sin(2.5)
theta, phi = 80.1534480601659, 10.1510817110481 # (10, 10) in sasview 3.x
tests = [
[{}, 0.2, 0.042761386790780453],
[{}, [0.2], [0.042761386790780453]],
[{'theta': theta, 'phi': phi}, (qx, qy), 0.03514647218513852],
[{'theta': theta, 'phi': phi}, [(qx, qy)], [0.03514647218513852]],
]
del qx, qy, theta, phi # not necessary to delete, but cleaner
def _extend_with_reff_tests(radius, length):
"""Test R_eff and form volume calculations"""
# V and Vr are the same for each R_eff mode
V = pi*radius**2*length # shell volume = form volume for solid objects
Vr = 1.0 # form:shell volume ratio
# Use test value for I(0.2) from above to check Fsq value. Need to
# remove scale and background before testing.
q = 0.2
scale, background = V, 0.001
Fsq = (0.042761386790780453 - background)*scale
F = None # Need target value for <F>
# Various values for R_eff, depending on mode
r_effs = [
0.,
0.5*(0.75*radius*(2.0*radius*length
+ (radius + length)*(pi*radius + length)))**(1./3.),
(0.75*radius**2*length)**(1./3.),
radius,
length/2.,
min(radius, length/2.),
max(radius, length/2.),
np.sqrt(4*radius**2 + length**2)/2.,
]
tests.extend([
({'radius_effective_mode': 0}, q, F, Fsq, r_effs[0], V, Vr),
({'radius_effective_mode': 1}, q, F, Fsq, r_effs[1], V, Vr),
({'radius_effective_mode': 2}, q, F, Fsq, r_effs[2], V, Vr),
({'radius_effective_mode': 3}, q, F, Fsq, r_effs[3], V, Vr),
({'radius_effective_mode': 4}, q, F, Fsq, r_effs[4], V, Vr),
({'radius_effective_mode': 5}, q, F, Fsq, r_effs[5], V, Vr),
({'radius_effective_mode': 6}, q, F, Fsq, r_effs[6], V, Vr),
({'radius_effective_mode': 7}, q, F, Fsq, r_effs[7], V, Vr),
])
# Test Reff and volume with default model parameters
_extend_with_reff_tests(parameters[2][2], parameters[3][2])
del _extend_with_reff_tests
# ADDED by: RKH ON: 18Mar2016 renamed sld's etc
Back to Model
Download