[ae3ce4e] | 1 | #!/usr/bin/env python |
---|
[95986b5] | 2 | """ |
---|
| 3 | This software was developed by the University of Tennessee as part of the |
---|
| 4 | Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 5 | project funded by the US National Science Foundation. |
---|
| 6 | |
---|
| 7 | If you use DANSE applications to do scientific research that leads to |
---|
| 8 | publication, we ask that you acknowledge the use of the software with the |
---|
| 9 | following sentence: |
---|
| 10 | |
---|
| 11 | "This work benefited from DANSE software developed under NSF award DMR-0520547." |
---|
| 12 | |
---|
| 13 | copyright 2008, University of Tennessee |
---|
| 14 | """ |
---|
| 15 | |
---|
[ae3ce4e] | 16 | """ Provide functionality for a C extension model |
---|
| 17 | |
---|
| 18 | WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY |
---|
[836fe6e] | 19 | DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\sphere.h |
---|
[ae3ce4e] | 20 | AND RE-RUN THE GENERATOR SCRIPT |
---|
| 21 | |
---|
| 22 | """ |
---|
| 23 | |
---|
| 24 | from sans.models.BaseComponent import BaseComponent |
---|
| 25 | from sans_extension.c_models import CSphereModel |
---|
| 26 | import copy |
---|
| 27 | |
---|
| 28 | class SphereModel(CSphereModel, BaseComponent): |
---|
| 29 | """ Class that evaluates a SphereModel model. |
---|
[fe9c19b4] | 30 | This file was auto-generated from ..\c_extensions\sphere.h. |
---|
| 31 | Refer to that file and the structure it contains |
---|
| 32 | for details of the model. |
---|
| 33 | List of default parameters: |
---|
[7dde98e] | 34 | scale = 1.0 |
---|
[1ed3834] | 35 | radius = 60.0 [A] |
---|
[27972c1d] | 36 | contrast = 1e-006 [1/A^(2)] |
---|
[0824909] | 37 | background = 0.0 [1/cm] |
---|
[ae3ce4e] | 38 | |
---|
| 39 | """ |
---|
| 40 | |
---|
| 41 | def __init__(self): |
---|
| 42 | """ Initialization """ |
---|
| 43 | |
---|
| 44 | # Initialize BaseComponent first, then sphere |
---|
| 45 | BaseComponent.__init__(self) |
---|
| 46 | CSphereModel.__init__(self) |
---|
| 47 | |
---|
| 48 | ## Name of the model |
---|
| 49 | self.name = "SphereModel" |
---|
[836fe6e] | 50 | ## Model description |
---|
[1ed3834] | 51 | self.description ="""P(q)=(scale/V)*[3V(scatter_sld-solvent_sld)*(sin(qR)-qRcos(qR)) |
---|
| 52 | /(qR)^3]^(2)+bkg |
---|
| 53 | |
---|
| 54 | bkg:background, R: radius of sphere |
---|
[9316609] | 55 | V:The volume of the scatter |
---|
[1ed3834] | 56 | contrast:SLD difference between |
---|
| 57 | scatter and solvent |
---|
| 58 | scatter_sld: the SLD of the scatter |
---|
| 59 | solvent_sld: the SLD of the solvent |
---|
| 60 | """ |
---|
[836fe6e] | 61 | |
---|
[fe9c19b4] | 62 | ## Parameter details [units, min, max] |
---|
[ae3ce4e] | 63 | self.details = {} |
---|
| 64 | self.details['scale'] = ['', None, None] |
---|
[1ed3834] | 65 | self.details['radius'] = ['[A]', None, None] |
---|
[27972c1d] | 66 | self.details['contrast'] = ['[1/A^(2)]', None, None] |
---|
[0824909] | 67 | self.details['background'] = ['[1/cm]', None, None] |
---|
[7dde98e] | 68 | |
---|
[fe9c19b4] | 69 | ## fittable parameters |
---|
[836fe6e] | 70 | self.fixed=['radius.width'] |
---|
[25a608f5] | 71 | |
---|
| 72 | ## parameters with orientation |
---|
| 73 | self.orientation_params =[] |
---|
[ae3ce4e] | 74 | |
---|
| 75 | def clone(self): |
---|
| 76 | """ Return a identical copy of self """ |
---|
[95986b5] | 77 | return self._clone(SphereModel()) |
---|
[fe9c19b4] | 78 | |
---|
| 79 | def __getstate__(self): |
---|
| 80 | """ return object state for pickling and copying """ |
---|
| 81 | print "__dict__",self.__dict__ |
---|
| 82 | #self.__dict__['params'] = self.params |
---|
| 83 | #self.__dict__['dispersion'] = self.dispersion |
---|
| 84 | #self.__dict__['log'] = self.log |
---|
| 85 | model_state = {'params': self.params, 'dispersion': self.dispersion, 'log': self.log} |
---|
| 86 | |
---|
| 87 | return self.__dict__, model_state |
---|
| 88 | |
---|
| 89 | def __setstate__(self, state): |
---|
| 90 | """ create object from pickled state """ |
---|
| 91 | |
---|
| 92 | self.__dict__, model_state = state |
---|
| 93 | self.params = model_state['params'] |
---|
| 94 | self.dispersion = model_state['dispersion'] |
---|
| 95 | self.log = model_state['log'] |
---|
| 96 | |
---|
[ae3ce4e] | 97 | |
---|
| 98 | def run(self, x = 0.0): |
---|
| 99 | """ Evaluate the model |
---|
| 100 | @param x: input q, or [q,phi] |
---|
| 101 | @return: scattering function P(q) |
---|
| 102 | """ |
---|
| 103 | |
---|
| 104 | return CSphereModel.run(self, x) |
---|
| 105 | |
---|
| 106 | def runXY(self, x = 0.0): |
---|
| 107 | """ Evaluate the model in cartesian coordinates |
---|
| 108 | @param x: input q, or [qx, qy] |
---|
| 109 | @return: scattering function P(q) |
---|
| 110 | """ |
---|
| 111 | |
---|
| 112 | return CSphereModel.runXY(self, x) |
---|
[95986b5] | 113 | |
---|
[9bd69098] | 114 | def evalDistribition(self, x = []): |
---|
| 115 | """ Evaluate the model in cartesian coordinates |
---|
| 116 | @param x: input q[], or [qx[], qy[]] |
---|
| 117 | @return: scattering function P(q[]) |
---|
| 118 | """ |
---|
| 119 | return CSphereModel.evalDistribition(self, x) |
---|
| 120 | |
---|
[5eb9154] | 121 | def calculate_ER(self): |
---|
| 122 | """ Calculate the effective radius for P(q)*S(q) |
---|
| 123 | @return: the value of the effective radius |
---|
| 124 | """ |
---|
| 125 | return CSphereModel.calculate_ER(self) |
---|
| 126 | |
---|
[95986b5] | 127 | def set_dispersion(self, parameter, dispersion): |
---|
| 128 | """ |
---|
| 129 | Set the dispersion object for a model parameter |
---|
| 130 | @param parameter: name of the parameter [string] |
---|
| 131 | @dispersion: dispersion object of type DispersionModel |
---|
| 132 | """ |
---|
| 133 | return CSphereModel.set_dispersion(self, parameter, dispersion.cdisp) |
---|
| 134 | |
---|
[ae3ce4e] | 135 | |
---|
| 136 | # End of file |
---|