[ae3ce4e] | 1 | #!/usr/bin/env python |
---|
[0f5bc9f] | 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 |
---|
[0f5bc9f] | 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. |
---|
[0f5bc9f] | 30 | This file was auto-generated from ../c_extensions/sphere.h. |
---|
[ae3ce4e] | 31 | Refer to that file and the structure it contains |
---|
| 32 | for details of the model. |
---|
| 33 | List of default parameters: |
---|
| 34 | scale = 1e-006 |
---|
| 35 | radius = 60.0 A |
---|
| 36 | contrast = 1.0 A-2 |
---|
| 37 | background = 0.0 cm-1 |
---|
| 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" |
---|
[5f89fb8] | 50 | self.description='' |
---|
[ae3ce4e] | 51 | ## Parameter details [units, min, max] |
---|
| 52 | self.details = {} |
---|
| 53 | self.details['scale'] = ['', None, None] |
---|
| 54 | self.details['radius'] = ['A', None, None] |
---|
| 55 | self.details['contrast'] = ['A-2', None, None] |
---|
| 56 | self.details['background'] = ['cm-1', None, None] |
---|
| 57 | |
---|
| 58 | |
---|
| 59 | def clone(self): |
---|
| 60 | """ Return a identical copy of self """ |
---|
[8809e48] | 61 | return self._clone(SphereModel()) |
---|
[ae3ce4e] | 62 | |
---|
| 63 | def run(self, x = 0.0): |
---|
| 64 | """ Evaluate the model |
---|
| 65 | @param x: input q, or [q,phi] |
---|
| 66 | @return: scattering function P(q) |
---|
| 67 | """ |
---|
| 68 | |
---|
| 69 | return CSphereModel.run(self, x) |
---|
| 70 | |
---|
| 71 | def runXY(self, x = 0.0): |
---|
| 72 | """ Evaluate the model in cartesian coordinates |
---|
| 73 | @param x: input q, or [qx, qy] |
---|
| 74 | @return: scattering function P(q) |
---|
| 75 | """ |
---|
| 76 | |
---|
| 77 | return CSphereModel.runXY(self, x) |
---|
[0f5bc9f] | 78 | |
---|
| 79 | def set_dispersion(self, parameter, dispersion): |
---|
| 80 | """ |
---|
| 81 | Set the dispersion object for a model parameter |
---|
| 82 | @param parameter: name of the parameter [string] |
---|
| 83 | @dispersion: dispersion object of type DispersionModel |
---|
| 84 | """ |
---|
| 85 | return CSphereModel.set_dispersion(self, parameter, dispersion.cdisp) |
---|
| 86 | |
---|
[ae3ce4e] | 87 | |
---|
| 88 | # End of file |
---|