[79ac6f8] | 1 | ############################################################################## |
---|
[d47c349] | 2 | # This software was developed by the University of Tennessee as part of the |
---|
| 3 | # Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 4 | # project funded by the US National Science Foundation. |
---|
[79ac6f8] | 5 | # |
---|
[d47c349] | 6 | # If you use DANSE applications to do scientific research that leads to |
---|
| 7 | # publication, we ask that you acknowledge the use of the software with the |
---|
| 8 | # following sentence: |
---|
[79ac6f8] | 9 | # |
---|
[d47c349] | 10 | # This work benefited from DANSE software developed under NSF award DMR-0520547 |
---|
[79ac6f8] | 11 | # |
---|
[d47c349] | 12 | # Copyright 2008-2011, University of Tennessee |
---|
[79ac6f8] | 13 | ############################################################################## |
---|
[af03ddd] | 14 | |
---|
[79ac6f8] | 15 | """ |
---|
| 16 | Provide functionality for a C extension model |
---|
[af03ddd] | 17 | |
---|
[79ac6f8] | 18 | :WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY |
---|
[79ba1fc] | 19 | DO NOT MODIFY THIS FILE, MODIFY |
---|
| 20 | [INCLUDE_FILE] |
---|
[79ac6f8] | 21 | AND RE-RUN THE GENERATOR SCRIPT |
---|
[af03ddd] | 22 | """ |
---|
| 23 | |
---|
| 24 | from sans.models.BaseComponent import BaseComponent |
---|
[f578ad4] | 25 | from sans.models.sans_extension.c_models import [CPYTHONCLASS] |
---|
[5650ebf] | 26 | |
---|
| 27 | def create_[PYTHONCLASS](): |
---|
[411d8bf] | 28 | """ |
---|
| 29 | Create a model instance |
---|
| 30 | """ |
---|
[5650ebf] | 31 | obj = [PYTHONCLASS]() |
---|
[79ba1fc] | 32 | # [CPYTHONCLASS].__init__(obj) is called by |
---|
| 33 | # the [PYTHONCLASS] constructor |
---|
[5650ebf] | 34 | return obj |
---|
| 35 | |
---|
[af03ddd] | 36 | class [PYTHONCLASS]([CPYTHONCLASS], BaseComponent): |
---|
[79ac6f8] | 37 | """ |
---|
| 38 | Class that evaluates a [PYTHONCLASS] model. |
---|
| 39 | This file was auto-generated from [INCLUDE_FILE]. |
---|
| 40 | Refer to that file and the structure it contains |
---|
| 41 | for details of the model. |
---|
| 42 | [DEFAULT_LIST] |
---|
[af03ddd] | 43 | """ |
---|
| 44 | |
---|
[32ea318] | 45 | def __init__(self, multfactor=1): |
---|
[af03ddd] | 46 | """ Initialization """ |
---|
[d47c349] | 47 | self.__dict__ = {} |
---|
[af03ddd] | 48 | |
---|
| 49 | # Initialize BaseComponent first, then sphere |
---|
| 50 | BaseComponent.__init__(self) |
---|
[5650ebf] | 51 | #apply([CPYTHONCLASS].__init__, (self,)) |
---|
[5da3cc5] | 52 | |
---|
[8389beb] | 53 | [CALL_CPYTHON_INIT] |
---|
[5da3cc5] | 54 | |
---|
[af03ddd] | 55 | ## Name of the model |
---|
| 56 | self.name = "[PYTHONCLASS]" |
---|
[836fe6e] | 57 | ## Model description |
---|
[43e8326] | 58 | self.description = """ |
---|
| 59 | [DESCRIPTION] |
---|
| 60 | """ |
---|
[836fe6e] | 61 | |
---|
[fe9c19b4] | 62 | [PAR_DETAILS] |
---|
| 63 | ## fittable parameters |
---|
[411d8bf] | 64 | self.fixed = [FIXED] |
---|
[25a608f5] | 65 | |
---|
[8622241] | 66 | ## non-fittable parameters |
---|
| 67 | self.non_fittable = [NON_FITTABLE_PARAMS] |
---|
| 68 | |
---|
[25a608f5] | 69 | ## parameters with orientation |
---|
[8622241] | 70 | self.orientation_params = [ORIENTATION_PARAMS] |
---|
[2360a7b] | 71 | |
---|
[318b5bbb] | 72 | ## parameters with magnetism |
---|
| 73 | self.magnetic_params = [MAGNETIC_PARAMS] |
---|
| 74 | |
---|
[fa6db8b] | 75 | self.category = [CATEGORY] |
---|
[5da3cc5] | 76 | self.multiplicity_info = [MULTIPLICITY_INFO] |
---|
| 77 | |
---|
[2360a7b] | 78 | def __setstate__(self, state): |
---|
| 79 | """ |
---|
| 80 | restore the state of a model from pickle |
---|
| 81 | """ |
---|
| 82 | self.__dict__, self.params, self.dispersion = state |
---|
| 83 | |
---|
[5650ebf] | 84 | def __reduce_ex__(self, proto): |
---|
[79ac6f8] | 85 | """ |
---|
[5650ebf] | 86 | Overwrite the __reduce_ex__ of PyTypeObject *type call in the init of |
---|
| 87 | c model. |
---|
[79ac6f8] | 88 | """ |
---|
[2360a7b] | 89 | state = (self.__dict__, self.params, self.dispersion) |
---|
[411d8bf] | 90 | return (create_[PYTHONCLASS], tuple(), state, None, None) |
---|
[fe9c19b4] | 91 | |
---|
[5650ebf] | 92 | def clone(self): |
---|
| 93 | """ Return a identical copy of self """ |
---|
| 94 | return self._clone([PYTHONCLASS]()) |
---|
[fe9c19b4] | 95 | |
---|
[79ac6f8] | 96 | def run(self, x=0.0): |
---|
| 97 | """ |
---|
| 98 | Evaluate the model |
---|
| 99 | |
---|
| 100 | :param x: input q, or [q,phi] |
---|
| 101 | |
---|
| 102 | :return: scattering function P(q) |
---|
| 103 | |
---|
[af03ddd] | 104 | """ |
---|
| 105 | return [CPYTHONCLASS].run(self, x) |
---|
| 106 | |
---|
[79ac6f8] | 107 | def runXY(self, x=0.0): |
---|
| 108 | """ |
---|
| 109 | Evaluate the model in cartesian coordinates |
---|
| 110 | |
---|
| 111 | :param x: input q, or [qx, qy] |
---|
| 112 | |
---|
| 113 | :return: scattering function P(q) |
---|
| 114 | |
---|
[af03ddd] | 115 | """ |
---|
| 116 | return [CPYTHONCLASS].runXY(self, x) |
---|
| 117 | |
---|
[d47c349] | 118 | def evalDistribution(self, x): |
---|
[79ac6f8] | 119 | """ |
---|
| 120 | Evaluate the model in cartesian coordinates |
---|
| 121 | |
---|
| 122 | :param x: input q[], or [qx[], qy[]] |
---|
| 123 | |
---|
| 124 | :return: scattering function P(q[]) |
---|
| 125 | |
---|
[5b56b7a] | 126 | """ |
---|
[f9a1279] | 127 | return [CPYTHONCLASS].evalDistribution(self, x) |
---|
[5b56b7a] | 128 | |
---|
[5eb9154] | 129 | def calculate_ER(self): |
---|
[79ac6f8] | 130 | """ |
---|
| 131 | Calculate the effective radius for P(q)*S(q) |
---|
| 132 | |
---|
| 133 | :return: the value of the effective radius |
---|
| 134 | |
---|
[5eb9154] | 135 | """ |
---|
| 136 | return [CPYTHONCLASS].calculate_ER(self) |
---|
| 137 | |
---|
[e08bd5b] | 138 | def calculate_VR(self): |
---|
| 139 | """ |
---|
| 140 | Calculate the volf ratio for P(q)*S(q) |
---|
| 141 | |
---|
| 142 | :return: the value of the volf ratio |
---|
| 143 | |
---|
| 144 | """ |
---|
| 145 | return [CPYTHONCLASS].calculate_VR(self) |
---|
| 146 | |
---|
[af03ddd] | 147 | def set_dispersion(self, parameter, dispersion): |
---|
| 148 | """ |
---|
[79ac6f8] | 149 | Set the dispersion object for a model parameter |
---|
| 150 | |
---|
| 151 | :param parameter: name of the parameter [string] |
---|
| 152 | :param dispersion: dispersion object of type DispersionModel |
---|
| 153 | |
---|
[af03ddd] | 154 | """ |
---|
[79ba1fc] | 155 | return [CPYTHONCLASS].set_dispersion(self, |
---|
| 156 | parameter, dispersion.cdisp) |
---|
[af03ddd] | 157 | |
---|
| 158 | |
---|
[fa6db8b] | 159 | # End of file |
---|