[1bbf2ac] | 1 | #!/usr/bin/env python |
---|
| 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 | |
---|
| 16 | """ Provide functionality for a C extension model |
---|
| 17 | |
---|
| 18 | WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY |
---|
[0824909] | 19 | DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\Hardsphere.h |
---|
[1bbf2ac] | 20 | AND RE-RUN THE GENERATOR SCRIPT |
---|
| 21 | |
---|
| 22 | """ |
---|
| 23 | |
---|
| 24 | from sans.models.BaseComponent import BaseComponent |
---|
| 25 | from sans_extension.c_models import CHardsphereStructure |
---|
| 26 | import copy |
---|
| 27 | |
---|
| 28 | class HardsphereStructure(CHardsphereStructure, BaseComponent): |
---|
| 29 | """ Class that evaluates a HardsphereStructure model. |
---|
[0824909] | 30 | This file was auto-generated from ..\c_extensions\Hardsphere.h. |
---|
[1bbf2ac] | 31 | Refer to that file and the structure it contains |
---|
| 32 | for details of the model. |
---|
| 33 | List of default parameters: |
---|
[1ed3834] | 34 | radius = 50.0 [A] |
---|
[1bbf2ac] | 35 | volfraction = 0.2 |
---|
| 36 | |
---|
| 37 | """ |
---|
| 38 | |
---|
| 39 | def __init__(self): |
---|
| 40 | """ Initialization """ |
---|
| 41 | |
---|
| 42 | # Initialize BaseComponent first, then sphere |
---|
| 43 | BaseComponent.__init__(self) |
---|
| 44 | CHardsphereStructure.__init__(self) |
---|
| 45 | |
---|
| 46 | ## Name of the model |
---|
| 47 | self.name = "HardsphereStructure" |
---|
| 48 | ## Model description |
---|
[1ed3834] | 49 | self.description ="""Structure factor for interacting particles: . |
---|
[1bbf2ac] | 50 | |
---|
| 51 | The interparticle potential is |
---|
| 52 | |
---|
| 53 | U(r)= inf , r < 2R |
---|
| 54 | = 0 , r >= 2R |
---|
| 55 | |
---|
| 56 | R: radius of the Hardsphere particle |
---|
| 57 | V:The volume fraction |
---|
| 58 | |
---|
[1ed3834] | 59 | Ref: Percus., J. K.,etc., J. Phy. |
---|
| 60 | Rev. 1958, 110, 1.""" |
---|
[1bbf2ac] | 61 | |
---|
| 62 | ## Parameter details [units, min, max] |
---|
| 63 | self.details = {} |
---|
[1ed3834] | 64 | self.details['radius'] = ['[A]', None, None] |
---|
[1bbf2ac] | 65 | self.details['volfraction'] = ['', None, None] |
---|
| 66 | |
---|
| 67 | ## fittable parameters |
---|
| 68 | self.fixed=['radius.width'] |
---|
[0824909] | 69 | |
---|
| 70 | ## parameters with orientation |
---|
| 71 | self.orientation_params =[] |
---|
[1bbf2ac] | 72 | |
---|
| 73 | def clone(self): |
---|
| 74 | """ Return a identical copy of self """ |
---|
| 75 | return self._clone(HardsphereStructure()) |
---|
| 76 | |
---|
| 77 | def run(self, x = 0.0): |
---|
| 78 | """ Evaluate the model |
---|
| 79 | @param x: input q, or [q,phi] |
---|
| 80 | @return: scattering function P(q) |
---|
| 81 | """ |
---|
| 82 | |
---|
| 83 | return CHardsphereStructure.run(self, x) |
---|
| 84 | |
---|
| 85 | def runXY(self, x = 0.0): |
---|
| 86 | """ Evaluate the model in cartesian coordinates |
---|
| 87 | @param x: input q, or [qx, qy] |
---|
| 88 | @return: scattering function P(q) |
---|
| 89 | """ |
---|
| 90 | |
---|
| 91 | return CHardsphereStructure.runXY(self, x) |
---|
| 92 | |
---|
| 93 | def set_dispersion(self, parameter, dispersion): |
---|
| 94 | """ |
---|
| 95 | Set the dispersion object for a model parameter |
---|
| 96 | @param parameter: name of the parameter [string] |
---|
| 97 | @dispersion: dispersion object of type DispersionModel |
---|
| 98 | """ |
---|
| 99 | return CHardsphereStructure.set_dispersion(self, parameter, dispersion.cdisp) |
---|
| 100 | |
---|
| 101 | |
---|
| 102 | # End of file |
---|