[ae3ce4e] | 1 | #!/usr/bin/env python |
---|
[95986b5] | 2 | |
---|
[79ac6f8] | 3 | ############################################################################## |
---|
| 4 | # This software was developed by the University of Tennessee as part of the |
---|
| 5 | # Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 6 | # project funded by the US National Science Foundation. |
---|
| 7 | # |
---|
| 8 | # If you use DANSE applications to do scientific research that leads to |
---|
| 9 | # publication, we ask that you acknowledge the use of the software with the |
---|
| 10 | # following sentence: |
---|
| 11 | # |
---|
| 12 | # "This work benefited from DANSE software developed under NSF award DMR-0520547." |
---|
| 13 | # |
---|
| 14 | # copyright 2008, University of Tennessee |
---|
| 15 | ############################################################################## |
---|
[95986b5] | 16 | |
---|
| 17 | |
---|
[79ac6f8] | 18 | """ |
---|
| 19 | Provide functionality for a C extension model |
---|
[ae3ce4e] | 20 | |
---|
[79ac6f8] | 21 | :WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY |
---|
| 22 | DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\cylinder.h |
---|
| 23 | AND RE-RUN THE GENERATOR SCRIPT |
---|
[ae3ce4e] | 24 | |
---|
| 25 | """ |
---|
| 26 | |
---|
| 27 | from sans.models.BaseComponent import BaseComponent |
---|
| 28 | from sans_extension.c_models import CCylinderModel |
---|
| 29 | import copy |
---|
[96656e3] | 30 | |
---|
| 31 | def create_CylinderModel(): |
---|
| 32 | obj = CylinderModel() |
---|
| 33 | #CCylinderModel.__init__(obj) is called by CylinderModel constructor |
---|
| 34 | return obj |
---|
| 35 | |
---|
[ae3ce4e] | 36 | class CylinderModel(CCylinderModel, BaseComponent): |
---|
[79ac6f8] | 37 | """ |
---|
| 38 | Class that evaluates a CylinderModel model. |
---|
| 39 | This file was auto-generated from ..\c_extensions\cylinder.h. |
---|
| 40 | Refer to that file and the structure it contains |
---|
| 41 | for details of the model. |
---|
| 42 | List of default parameters: |
---|
[ae3ce4e] | 43 | scale = 1.0 |
---|
[1ed3834] | 44 | radius = 20.0 [A] |
---|
| 45 | length = 400.0 [A] |
---|
[f10063e] | 46 | sldCyl = 4e-006 [1/A^(2)] |
---|
| 47 | sldSolv = 1e-006 [1/A^(2)] |
---|
[0824909] | 48 | background = 0.0 [1/cm] |
---|
[4628e31] | 49 | cyl_theta = 60.0 [deg] |
---|
| 50 | cyl_phi = 60.0 [deg] |
---|
[ae3ce4e] | 51 | |
---|
| 52 | """ |
---|
| 53 | |
---|
| 54 | def __init__(self): |
---|
| 55 | """ Initialization """ |
---|
| 56 | |
---|
| 57 | # Initialize BaseComponent first, then sphere |
---|
| 58 | BaseComponent.__init__(self) |
---|
[96656e3] | 59 | #apply(CCylinderModel.__init__, (self,)) |
---|
[ae3ce4e] | 60 | CCylinderModel.__init__(self) |
---|
| 61 | |
---|
| 62 | ## Name of the model |
---|
| 63 | self.name = "CylinderModel" |
---|
[836fe6e] | 64 | ## Model description |
---|
[f10063e] | 65 | self.description =""" f(q)= 2*(sldCyl - sldSolv)*V*sin(qLcos(alpha/2)) |
---|
[1ed3834] | 66 | /[qLcos(alpha/2)]*J1(qRsin(alpha/2))/[qRsin(alpha)] |
---|
| 67 | |
---|
| 68 | P(q,alpha)= scale/V*f(q)^(2)+bkg |
---|
[9316609] | 69 | V: Volume of the cylinder |
---|
| 70 | R: Radius of the cylinder |
---|
| 71 | L: Length of the cylinder |
---|
| 72 | J1: The bessel function |
---|
[1ed3834] | 73 | alpha: angle betweenthe axis of the |
---|
| 74 | cylinder and the q-vector for 1D |
---|
| 75 | :the ouput is P(q)=scale/V*integral |
---|
| 76 | from pi/2 to zero of... |
---|
[0824909] | 77 | f(q)^(2)*sin(alpha)*dalpha+ bkg""" |
---|
[836fe6e] | 78 | |
---|
[fe9c19b4] | 79 | ## Parameter details [units, min, max] |
---|
[ae3ce4e] | 80 | self.details = {} |
---|
| 81 | self.details['scale'] = ['', None, None] |
---|
[1ed3834] | 82 | self.details['radius'] = ['[A]', None, None] |
---|
| 83 | self.details['length'] = ['[A]', None, None] |
---|
[f10063e] | 84 | self.details['sldCyl'] = ['[1/A^(2)]', None, None] |
---|
| 85 | self.details['sldSolv'] = ['[1/A^(2)]', None, None] |
---|
[0824909] | 86 | self.details['background'] = ['[1/cm]', None, None] |
---|
[4628e31] | 87 | self.details['cyl_theta'] = ['[deg]', None, None] |
---|
| 88 | self.details['cyl_phi'] = ['[deg]', None, None] |
---|
[836fe6e] | 89 | |
---|
[fe9c19b4] | 90 | ## fittable parameters |
---|
[836fe6e] | 91 | self.fixed=['cyl_phi.width', 'cyl_theta.width', 'length.width', 'radius.width'] |
---|
[25a608f5] | 92 | |
---|
[35aface] | 93 | ## non-fittable parameters |
---|
[96656e3] | 94 | self.non_fittable = [] |
---|
[35aface] | 95 | |
---|
[25a608f5] | 96 | ## parameters with orientation |
---|
[96656e3] | 97 | self.orientation_params = ['cyl_phi', 'cyl_theta', 'cyl_phi.width', 'cyl_theta.width'] |
---|
[ae3ce4e] | 98 | |
---|
[96656e3] | 99 | def __reduce_ex__(self, proto): |
---|
[79ac6f8] | 100 | """ |
---|
[96656e3] | 101 | Overwrite the __reduce_ex__ of PyTypeObject *type call in the init of |
---|
| 102 | c model. |
---|
[79ac6f8] | 103 | """ |
---|
[96656e3] | 104 | return (create_CylinderModel,tuple()) |
---|
[fe9c19b4] | 105 | |
---|
[96656e3] | 106 | def clone(self): |
---|
| 107 | """ Return a identical copy of self """ |
---|
| 108 | return self._clone(CylinderModel()) |
---|
[fe9c19b4] | 109 | |
---|
[ae3ce4e] | 110 | |
---|
[79ac6f8] | 111 | def run(self, x=0.0): |
---|
| 112 | """ |
---|
| 113 | Evaluate the model |
---|
| 114 | |
---|
| 115 | :param x: input q, or [q,phi] |
---|
| 116 | |
---|
| 117 | :return: scattering function P(q) |
---|
| 118 | |
---|
[ae3ce4e] | 119 | """ |
---|
| 120 | |
---|
| 121 | return CCylinderModel.run(self, x) |
---|
| 122 | |
---|
[79ac6f8] | 123 | def runXY(self, x=0.0): |
---|
| 124 | """ |
---|
| 125 | Evaluate the model in cartesian coordinates |
---|
| 126 | |
---|
| 127 | :param x: input q, or [qx, qy] |
---|
| 128 | |
---|
| 129 | :return: scattering function P(q) |
---|
| 130 | |
---|
[ae3ce4e] | 131 | """ |
---|
| 132 | |
---|
| 133 | return CCylinderModel.runXY(self, x) |
---|
[95986b5] | 134 | |
---|
[79ac6f8] | 135 | def evalDistribution(self, x=[]): |
---|
| 136 | """ |
---|
| 137 | Evaluate the model in cartesian coordinates |
---|
| 138 | |
---|
| 139 | :param x: input q[], or [qx[], qy[]] |
---|
| 140 | |
---|
| 141 | :return: scattering function P(q[]) |
---|
| 142 | |
---|
[9bd69098] | 143 | """ |
---|
[f9a1279] | 144 | return CCylinderModel.evalDistribution(self, x) |
---|
[9bd69098] | 145 | |
---|
[5eb9154] | 146 | def calculate_ER(self): |
---|
[79ac6f8] | 147 | """ |
---|
| 148 | Calculate the effective radius for P(q)*S(q) |
---|
| 149 | |
---|
| 150 | :return: the value of the effective radius |
---|
| 151 | |
---|
[5eb9154] | 152 | """ |
---|
| 153 | return CCylinderModel.calculate_ER(self) |
---|
| 154 | |
---|
[95986b5] | 155 | def set_dispersion(self, parameter, dispersion): |
---|
| 156 | """ |
---|
[79ac6f8] | 157 | Set the dispersion object for a model parameter |
---|
| 158 | |
---|
| 159 | :param parameter: name of the parameter [string] |
---|
| 160 | :param dispersion: dispersion object of type DispersionModel |
---|
| 161 | |
---|
[95986b5] | 162 | """ |
---|
| 163 | return CCylinderModel.set_dispersion(self, parameter, dispersion.cdisp) |
---|
| 164 | |
---|
[ae3ce4e] | 165 | |
---|
| 166 | # End of file |
---|