Changeset fc3ae1b in sasmodels
- Timestamp:
- Feb 28, 2018 2:40:48 PM (7 years ago)
- Branches:
- master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- 5bc373b, a22d104, f549e37
- Parents:
- 362a66f
- Location:
- sasmodels/models
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/models/core_shell_bicelle_elliptical.py
r2d81cfe rfc3ae1b 9 9 scattering length densities. The form factor is normalized by the total 10 10 particle volume. 11 12 11 13 12 .. figure:: img/core_shell_bicelle_geometry.png … … 91 90 for further information. 92 91 93 94 92 .. figure:: img/elliptical_cylinder_angle_definition.png 95 93 96 94 Definition of the angles for the oriented core_shell_bicelle_elliptical particles. 97 95 98 96 Model verified using Monte Carlo simulation for 1D and 2D scattering. 99 97 100 98 References … … 108 106 * **Author:** Richard Heenan **Date:** December 14, 2016 109 107 * **Last Modified by:** Richard Heenan **Date:** December 14, 2016 110 * **Last Reviewed by:** Richard Heenan BEWARE 2d data yet to be checked **Date:** December 14, 2016108 * **Last Reviewed by:** Paul Kienzle **Date:** Feb 28, 2018 111 109 """ 112 110 … … 130 128 # ["name", "units", default, [lower, upper], "type", "description"], 131 129 parameters = [ 132 ["radius", "Ang", 30, [0, inf], "volume", "Cylinder core radius "],133 ["x_core", "None", 3, [0, inf], "volume", " axial ratio of core, X = r_polar/r_equatorial"],130 ["radius", "Ang", 30, [0, inf], "volume", "Cylinder core radius r_minor"], 131 ["x_core", "None", 3, [0, inf], "volume", "Axial ratio of core, X = r_major/r_minor"], 134 132 ["thick_rim", "Ang", 8, [0, inf], "volume", "Rim shell thickness"], 135 133 ["thick_face", "Ang", 14, [0, inf], "volume", "Cylinder face thickness"], … … 139 137 ["sld_rim", "1e-6/Ang^2", 1, [-inf, inf], "sld", "Cylinder rim scattering length density"], 140 138 ["sld_solvent", "1e-6/Ang^2", 6, [-inf, inf], "sld", "Solvent scattering length density"], 141 ["theta", "degrees", 90.0, [-360, 360], "orientation", " cylinder axis to beam angle"],142 ["phi", "degrees", 0, [-360, 360], "orientation", " rotation about beam"],143 ["psi", "degrees", 0, [-360, 360], "orientation", " rotation about cylinder axis"]139 ["theta", "degrees", 90.0, [-360, 360], "orientation", "Cylinder axis to beam angle"], 140 ["phi", "degrees", 0, [-360, 360], "orientation", "Rotation about beam"], 141 ["psi", "degrees", 0, [-360, 360], "orientation", "Rotation about cylinder axis"] 144 142 ] 145 143 -
sasmodels/models/core_shell_bicelle_elliptical_belt_rough.py
r108e70e rfc3ae1b 140 140 # ["name", "units", default, [lower, upper], "type", "description"], 141 141 parameters = [ 142 ["radius", "Ang", 30, [0, inf], "volume", "Cylinder core radius "],143 ["x_core", "None", 3, [0, inf], "volume", " axial ratio of core, X = r_polar/r_equatorial"],142 ["radius", "Ang", 30, [0, inf], "volume", "Cylinder core radius r_minor"], 143 ["x_core", "None", 3, [0, inf], "volume", "Axial ratio of core, X = r_major/r_minor"], 144 144 ["thick_rim", "Ang", 8, [0, inf], "volume", "Rim or belt shell thickness"], 145 145 ["thick_face", "Ang", 14, [0, inf], "volume", "Cylinder face thickness"], … … 149 149 ["sld_rim", "1e-6/Ang^2", 1, [-inf, inf], "sld", "Cylinder rim scattering length density"], 150 150 ["sld_solvent", "1e-6/Ang^2", 6, [-inf, inf], "sld", "Solvent scattering length density"], 151 ["sigma", "Ang", 0, [0, inf], "", " interfacial roughness"],152 ["theta", "degrees", 90.0, [-360, 360], "orientation", " cylinder axis to beam angle"],153 ["phi", "degrees", 0, [-360, 360], "orientation", " rotation about beam"],154 ["psi", "degrees", 0, [-360, 360], "orientation", " rotation about cylinder axis"],151 ["sigma", "Ang", 0, [0, inf], "", "Interfacial roughness"], 152 ["theta", "degrees", 90.0, [-360, 360], "orientation", "Cylinder axis to beam angle"], 153 ["phi", "degrees", 0, [-360, 360], "orientation", "Rotation about beam"], 154 ["psi", "degrees", 0, [-360, 360], "orientation", "Rotation about cylinder axis"], 155 155 ] 156 156
Note: See TracChangeset
for help on using the changeset viewer.