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 |
---|
19 | DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\prolate.h |
---|
20 | AND RE-RUN THE GENERATOR SCRIPT |
---|
21 | |
---|
22 | """ |
---|
23 | |
---|
24 | from sans.models.BaseComponent import BaseComponent |
---|
25 | from sans_extension.c_models import CProlateModel |
---|
26 | import copy |
---|
27 | |
---|
28 | class ProlateModel(CProlateModel, BaseComponent): |
---|
29 | """ Class that evaluates a ProlateModel model. |
---|
30 | This file was auto-generated from ..\c_extensions\prolate.h. |
---|
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 | major_core = 100.0 [A] |
---|
36 | minor_core = 50.0 [A] |
---|
37 | major_shell = 110.0 [A] |
---|
38 | minor_shell = 60.0 [A] |
---|
39 | contrast = 1e-006 [1/A²] |
---|
40 | sld_solvent = 6.3e-006 [1/A²] |
---|
41 | background = 0.001 [1/cm] |
---|
42 | axis_theta = 1.0 [rad] |
---|
43 | axis_phi = 1.0 [rad] |
---|
44 | |
---|
45 | """ |
---|
46 | |
---|
47 | def __init__(self): |
---|
48 | """ Initialization """ |
---|
49 | |
---|
50 | # Initialize BaseComponent first, then sphere |
---|
51 | BaseComponent.__init__(self) |
---|
52 | CProlateModel.__init__(self) |
---|
53 | |
---|
54 | ## Name of the model |
---|
55 | self.name = "ProlateModel" |
---|
56 | ## Model description |
---|
57 | self.description =""" Calculates the form factor for a monodisperse prolate ellipsoid particle with a |
---|
58 | core/shell structure |
---|
59 | Note:It is the users' responsibility to ensure that shell radii are larger than core radii, and""" |
---|
60 | |
---|
61 | ## Parameter details [units, min, max] |
---|
62 | self.details = {} |
---|
63 | self.details['scale'] = ['', None, None] |
---|
64 | self.details['major_core'] = ['[A]', None, None] |
---|
65 | self.details['minor_core'] = ['[A]', None, None] |
---|
66 | self.details['major_shell'] = ['[A]', None, None] |
---|
67 | self.details['minor_shell'] = ['[A]', None, None] |
---|
68 | self.details['contrast'] = ['[1/A²]', None, None] |
---|
69 | self.details['sld_solvent'] = ['[1/A²]', None, None] |
---|
70 | self.details['background'] = ['[1/cm]', None, None] |
---|
71 | self.details['axis_theta'] = ['[rad]', None, None] |
---|
72 | self.details['axis_phi'] = ['[rad]', None, None] |
---|
73 | |
---|
74 | ## fittable parameters |
---|
75 | self.fixed=['axis_phi.width', 'axis_theta.width', 'major_core.width', 'minor_core.width', 'major_shell', 'minor_shell'] |
---|
76 | |
---|
77 | ## parameters with orientation |
---|
78 | self.orientation_params =['axis_phi', 'axis_theta', 'axis_phi.width', 'axis_theta.width'] |
---|
79 | |
---|
80 | def clone(self): |
---|
81 | """ Return a identical copy of self """ |
---|
82 | return self._clone(ProlateModel()) |
---|
83 | |
---|
84 | def run(self, x = 0.0): |
---|
85 | """ Evaluate the model |
---|
86 | @param x: input q, or [q,phi] |
---|
87 | @return: scattering function P(q) |
---|
88 | """ |
---|
89 | |
---|
90 | return CProlateModel.run(self, x) |
---|
91 | |
---|
92 | def runXY(self, x = 0.0): |
---|
93 | """ Evaluate the model in cartesian coordinates |
---|
94 | @param x: input q, or [qx, qy] |
---|
95 | @return: scattering function P(q) |
---|
96 | """ |
---|
97 | |
---|
98 | return CProlateModel.runXY(self, x) |
---|
99 | |
---|
100 | def set_dispersion(self, parameter, dispersion): |
---|
101 | """ |
---|
102 | Set the dispersion object for a model parameter |
---|
103 | @param parameter: name of the parameter [string] |
---|
104 | @dispersion: dispersion object of type DispersionModel |
---|
105 | """ |
---|
106 | return CProlateModel.set_dispersion(self, parameter, dispersion.cdisp) |
---|
107 | |
---|
108 | |
---|
109 | # End of file |
---|