[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 |
---|
[9bd69098] | 19 | DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\lorentzian.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 CLorentzian |
---|
| 26 | import copy |
---|
| 27 | |
---|
| 28 | class Lorentzian(CLorentzian, BaseComponent): |
---|
| 29 | """ Class that evaluates a Lorentzian model. |
---|
[9bd69098] | 30 | This file was auto-generated from ..\c_extensions\lorentzian.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 = 1.0 |
---|
| 35 | gamma = 1.0 |
---|
| 36 | center = 0.0 |
---|
| 37 | |
---|
| 38 | """ |
---|
| 39 | |
---|
| 40 | def __init__(self): |
---|
| 41 | """ Initialization """ |
---|
| 42 | |
---|
| 43 | # Initialize BaseComponent first, then sphere |
---|
| 44 | BaseComponent.__init__(self) |
---|
| 45 | CLorentzian.__init__(self) |
---|
| 46 | |
---|
| 47 | ## Name of the model |
---|
| 48 | self.name = "Lorentzian" |
---|
[9bd69098] | 49 | ## Model description |
---|
[95986b5] | 50 | self.description ="""f(x)=scale * 1/pi 0.5gamma / [ (x-x_0)^2 + (0.5gamma)^2 ]""" |
---|
[9bd69098] | 51 | |
---|
[ae3ce4e] | 52 | ## Parameter details [units, min, max] |
---|
| 53 | self.details = {} |
---|
| 54 | self.details['scale'] = ['', None, None] |
---|
| 55 | self.details['gamma'] = ['', None, None] |
---|
| 56 | self.details['center'] = ['', None, None] |
---|
[9bd69098] | 57 | |
---|
| 58 | ## fittable parameters |
---|
| 59 | self.fixed=[] |
---|
| 60 | |
---|
| 61 | ## parameters with orientation |
---|
| 62 | self.orientation_params =[] |
---|
[ae3ce4e] | 63 | |
---|
| 64 | def clone(self): |
---|
| 65 | """ Return a identical copy of self """ |
---|
[95986b5] | 66 | return self._clone(Lorentzian()) |
---|
[ae3ce4e] | 67 | |
---|
| 68 | def run(self, x = 0.0): |
---|
| 69 | """ Evaluate the model |
---|
| 70 | @param x: input q, or [q,phi] |
---|
| 71 | @return: scattering function P(q) |
---|
| 72 | """ |
---|
| 73 | |
---|
| 74 | return CLorentzian.run(self, x) |
---|
| 75 | |
---|
| 76 | def runXY(self, x = 0.0): |
---|
| 77 | """ Evaluate the model in cartesian coordinates |
---|
| 78 | @param x: input q, or [qx, qy] |
---|
| 79 | @return: scattering function P(q) |
---|
| 80 | """ |
---|
| 81 | |
---|
| 82 | return CLorentzian.runXY(self, x) |
---|
[95986b5] | 83 | |
---|
[9bd69098] | 84 | def evalDistribition(self, x = []): |
---|
| 85 | """ Evaluate the model in cartesian coordinates |
---|
| 86 | @param x: input q[], or [qx[], qy[]] |
---|
| 87 | @return: scattering function P(q[]) |
---|
| 88 | """ |
---|
| 89 | return CLorentzian.evalDistribition(self, x) |
---|
| 90 | |
---|
[5eb9154] | 91 | def calculate_ER(self): |
---|
| 92 | """ Calculate the effective radius for P(q)*S(q) |
---|
| 93 | @return: the value of the effective radius |
---|
| 94 | """ |
---|
| 95 | return CLorentzian.calculate_ER(self) |
---|
| 96 | |
---|
[95986b5] | 97 | def set_dispersion(self, parameter, dispersion): |
---|
| 98 | """ |
---|
| 99 | Set the dispersion object for a model parameter |
---|
| 100 | @param parameter: name of the parameter [string] |
---|
| 101 | @dispersion: dispersion object of type DispersionModel |
---|
| 102 | """ |
---|
| 103 | return CLorentzian.set_dispersion(self, parameter, dispersion.cdisp) |
---|
| 104 | |
---|
[ae3ce4e] | 105 | |
---|
| 106 | # End of file |
---|