[829eee9] | 1 | #!/usr/bin/env python |
---|
[ec658c85] | 2 | |
---|
[79ac6f8] | 3 | ############################################################################## |
---|
| 4 | # This software was developed by the University of Tennessee as part of the |
---|
| 5 | # Distributed Data Analysis of Neutron Scattering Experiments (DANSE) |
---|
| 6 | # project funded by the US National Science Foundation. |
---|
| 7 | # |
---|
| 8 | # If you use DANSE applications to do scientific research that leads to |
---|
| 9 | # publication, we ask that you acknowledge the use of the software with the |
---|
| 10 | # following sentence: |
---|
| 11 | # |
---|
| 12 | # "This work benefited from DANSE software developed under NSF award DMR-0520547." |
---|
| 13 | # |
---|
| 14 | # copyright 2008, University of Tennessee |
---|
| 15 | ############################################################################## |
---|
[ec658c85] | 16 | |
---|
| 17 | |
---|
[79ac6f8] | 18 | """ |
---|
| 19 | Provide functionality for a C extension model |
---|
[ec658c85] | 20 | |
---|
[79ac6f8] | 21 | :WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY |
---|
| 22 | DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\fractal.h |
---|
| 23 | AND RE-RUN THE GENERATOR SCRIPT |
---|
[ec658c85] | 24 | |
---|
[829eee9] | 25 | """ |
---|
| 26 | |
---|
| 27 | from sans.models.BaseComponent import BaseComponent |
---|
[ec658c85] | 28 | from sans_extension.c_models import CFractalModel |
---|
| 29 | import copy |
---|
| 30 | |
---|
| 31 | class FractalModel(CFractalModel, BaseComponent): |
---|
[79ac6f8] | 32 | """ |
---|
| 33 | Class that evaluates a FractalModel model. |
---|
| 34 | This file was auto-generated from ..\c_extensions\fractal.h. |
---|
| 35 | Refer to that file and the structure it contains |
---|
| 36 | for details of the model. |
---|
| 37 | List of default parameters: |
---|
[ec658c85] | 38 | scale = 0.05 |
---|
| 39 | radius = 5.0 [A] |
---|
| 40 | fractal_dim = 2.0 |
---|
| 41 | cor_length = 100.0 [A] |
---|
| 42 | sldBlock = 2e-006 [1/A^(2)] |
---|
| 43 | sldSolv = 6.35e-006 [1/A^(2)] |
---|
| 44 | background = 0.0 [1/cm] |
---|
[829eee9] | 45 | |
---|
| 46 | """ |
---|
| 47 | |
---|
| 48 | def __init__(self): |
---|
| 49 | """ Initialization """ |
---|
| 50 | |
---|
[ec658c85] | 51 | # Initialize BaseComponent first, then sphere |
---|
[829eee9] | 52 | BaseComponent.__init__(self) |
---|
[ec658c85] | 53 | CFractalModel.__init__(self) |
---|
[829eee9] | 54 | |
---|
| 55 | ## Name of the model |
---|
[ec658c85] | 56 | self.name = "FractalModel" |
---|
| 57 | ## Model description |
---|
| 58 | self.description =""" The scattering intensity I(x) = P(|x|)*S(|x|) + background, where |
---|
| 59 | p(x)= scale * V * delta^(2)* F(x*radius)^(2) |
---|
| 60 | F(x) = 3*[sin(x)-x cos(x)]/x**3 |
---|
| 61 | where delta = sldBlock -sldSolv. |
---|
| 62 | scale = scale factor * Volume fraction |
---|
| 63 | radius = Block radius |
---|
| 64 | fractal_dim = Fractal dimension |
---|
| 65 | cor_length = Correlation Length |
---|
| 66 | sldBlock = SDL block |
---|
| 67 | sldSolv = SDL solvent |
---|
| 68 | background = background""" |
---|
| 69 | |
---|
[829eee9] | 70 | ## Parameter details [units, min, max] |
---|
| 71 | self.details = {} |
---|
[ec658c85] | 72 | self.details['scale'] = ['', None, None] |
---|
| 73 | self.details['radius'] = ['[A]', None, None] |
---|
| 74 | self.details['fractal_dim'] = ['', None, None] |
---|
| 75 | self.details['cor_length'] = ['[A]', None, None] |
---|
| 76 | self.details['sldBlock'] = ['[1/A^(2)]', None, None] |
---|
| 77 | self.details['sldSolv'] = ['[1/A^(2)]', None, None] |
---|
| 78 | self.details['background'] = ['[1/cm]', None, None] |
---|
[36948c92] | 79 | |
---|
[ec658c85] | 80 | ## fittable parameters |
---|
| 81 | self.fixed=[] |
---|
[3db3895] | 82 | |
---|
[ec658c85] | 83 | ## parameters with orientation |
---|
| 84 | self.orientation_params =[] |
---|
| 85 | |
---|
| 86 | def clone(self): |
---|
| 87 | """ Return a identical copy of self """ |
---|
| 88 | return self._clone(FractalModel()) |
---|
| 89 | |
---|
| 90 | def __getstate__(self): |
---|
[79ac6f8] | 91 | """ |
---|
| 92 | return object state for pickling and copying |
---|
| 93 | """ |
---|
[ec658c85] | 94 | model_state = {'params': self.params, 'dispersion': self.dispersion, 'log': self.log} |
---|
| 95 | |
---|
| 96 | return self.__dict__, model_state |
---|
[829eee9] | 97 | |
---|
[ec658c85] | 98 | def __setstate__(self, state): |
---|
[79ac6f8] | 99 | """ |
---|
| 100 | create object from pickled state |
---|
| 101 | |
---|
| 102 | :param state: the state of the current model |
---|
| 103 | |
---|
| 104 | """ |
---|
[829eee9] | 105 | |
---|
[ec658c85] | 106 | self.__dict__, model_state = state |
---|
| 107 | self.params = model_state['params'] |
---|
| 108 | self.dispersion = model_state['dispersion'] |
---|
| 109 | self.log = model_state['log'] |
---|
| 110 | |
---|
| 111 | |
---|
[79ac6f8] | 112 | def run(self, x=0.0): |
---|
| 113 | """ |
---|
| 114 | Evaluate the model |
---|
| 115 | |
---|
| 116 | :param x: input q, or [q,phi] |
---|
| 117 | |
---|
| 118 | :return: scattering function P(q) |
---|
| 119 | |
---|
[829eee9] | 120 | """ |
---|
[ec658c85] | 121 | |
---|
| 122 | return CFractalModel.run(self, x) |
---|
[829eee9] | 123 | |
---|
[79ac6f8] | 124 | def runXY(self, x=0.0): |
---|
| 125 | """ |
---|
| 126 | Evaluate the model in cartesian coordinates |
---|
| 127 | |
---|
| 128 | :param x: input q, or [qx, qy] |
---|
| 129 | |
---|
| 130 | :return: scattering function P(q) |
---|
| 131 | |
---|
[ec658c85] | 132 | """ |
---|
| 133 | |
---|
| 134 | return CFractalModel.runXY(self, x) |
---|
| 135 | |
---|
[79ac6f8] | 136 | def evalDistribution(self, x=[]): |
---|
| 137 | """ |
---|
| 138 | Evaluate the model in cartesian coordinates |
---|
| 139 | |
---|
| 140 | :param x: input q[], or [qx[], qy[]] |
---|
| 141 | |
---|
| 142 | :return: scattering function P(q[]) |
---|
| 143 | |
---|
[ec658c85] | 144 | """ |
---|
| 145 | return CFractalModel.evalDistribution(self, x) |
---|
| 146 | |
---|
| 147 | def calculate_ER(self): |
---|
[79ac6f8] | 148 | """ |
---|
| 149 | Calculate the effective radius for P(q)*S(q) |
---|
| 150 | |
---|
| 151 | :return: the value of the effective radius |
---|
| 152 | |
---|
[ec658c85] | 153 | """ |
---|
| 154 | return CFractalModel.calculate_ER(self) |
---|
| 155 | |
---|
| 156 | def set_dispersion(self, parameter, dispersion): |
---|
| 157 | """ |
---|
[79ac6f8] | 158 | Set the dispersion object for a model parameter |
---|
| 159 | |
---|
| 160 | :param parameter: name of the parameter [string] |
---|
| 161 | :param dispersion: dispersion object of type DispersionModel |
---|
| 162 | |
---|
[829eee9] | 163 | """ |
---|
[ec658c85] | 164 | return CFractalModel.set_dispersion(self, parameter, dispersion.cdisp) |
---|
| 165 | |
---|
| 166 | |
---|
| 167 | # End of file |
---|