[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 |
---|
[9ce41c6] | 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. |
---|
[fe9c19b4] | 30 | This file was auto-generated from ..\c_extensions\Hardsphere.h. |
---|
| 31 | Refer to that file and the structure it contains |
---|
| 32 | for details of the model. |
---|
| 33 | List of default parameters: |
---|
[5eb9154] | 34 | effect_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 | |
---|
[5eb9154] | 56 | R: effective radius of the Hardsphere particle |
---|
[1bbf2ac] | 57 | V:The volume fraction |
---|
| 58 | |
---|
[1ed3834] | 59 | Ref: Percus., J. K.,etc., J. Phy. |
---|
| 60 | Rev. 1958, 110, 1.""" |
---|
[1bbf2ac] | 61 | |
---|
[fe9c19b4] | 62 | ## Parameter details [units, min, max] |
---|
[1bbf2ac] | 63 | self.details = {} |
---|
[5eb9154] | 64 | self.details['effect_radius'] = ['[A]', None, None] |
---|
[1bbf2ac] | 65 | self.details['volfraction'] = ['', None, None] |
---|
| 66 | |
---|
[fe9c19b4] | 67 | ## fittable parameters |
---|
[5eb9154] | 68 | self.fixed=['effect_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()) |
---|
[fe9c19b4] | 76 | |
---|
| 77 | def __getstate__(self): |
---|
| 78 | """ return object state for pickling and copying """ |
---|
| 79 | model_state = {'params': self.params, 'dispersion': self.dispersion, 'log': self.log} |
---|
| 80 | |
---|
| 81 | return self.__dict__, model_state |
---|
| 82 | |
---|
| 83 | def __setstate__(self, state): |
---|
| 84 | """ create object from pickled state """ |
---|
| 85 | |
---|
| 86 | self.__dict__, model_state = state |
---|
| 87 | self.params = model_state['params'] |
---|
| 88 | self.dispersion = model_state['dispersion'] |
---|
| 89 | self.log = model_state['log'] |
---|
| 90 | |
---|
[1bbf2ac] | 91 | |
---|
| 92 | def run(self, x = 0.0): |
---|
| 93 | """ Evaluate the model |
---|
| 94 | @param x: input q, or [q,phi] |
---|
| 95 | @return: scattering function P(q) |
---|
| 96 | """ |
---|
| 97 | |
---|
| 98 | return CHardsphereStructure.run(self, x) |
---|
| 99 | |
---|
| 100 | def runXY(self, x = 0.0): |
---|
| 101 | """ Evaluate the model in cartesian coordinates |
---|
| 102 | @param x: input q, or [qx, qy] |
---|
| 103 | @return: scattering function P(q) |
---|
| 104 | """ |
---|
| 105 | |
---|
| 106 | return CHardsphereStructure.runXY(self, x) |
---|
| 107 | |
---|
[f9a1279] | 108 | def evalDistribution(self, x = []): |
---|
[9bd69098] | 109 | """ Evaluate the model in cartesian coordinates |
---|
| 110 | @param x: input q[], or [qx[], qy[]] |
---|
| 111 | @return: scattering function P(q[]) |
---|
| 112 | """ |
---|
[f9a1279] | 113 | return CHardsphereStructure.evalDistribution(self, x) |
---|
[9bd69098] | 114 | |
---|
[5eb9154] | 115 | def calculate_ER(self): |
---|
| 116 | """ Calculate the effective radius for P(q)*S(q) |
---|
| 117 | @return: the value of the effective radius |
---|
| 118 | """ |
---|
| 119 | return CHardsphereStructure.calculate_ER(self) |
---|
| 120 | |
---|
[1bbf2ac] | 121 | def set_dispersion(self, parameter, dispersion): |
---|
| 122 | """ |
---|
| 123 | Set the dispersion object for a model parameter |
---|
| 124 | @param parameter: name of the parameter [string] |
---|
| 125 | @dispersion: dispersion object of type DispersionModel |
---|
| 126 | """ |
---|
| 127 | return CHardsphereStructure.set_dispersion(self, parameter, dispersion.cdisp) |
---|
| 128 | |
---|
| 129 | |
---|
| 130 | # End of file |
---|