source: sasview/sansmodels/src/sans/models/CoreFourShellModel.py @ ca4c150

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since ca4c150 was 96656e3, checked in by Jae Cho <jhjcho@…>, 14 years ago

update models due to changes of template

  • Property mode set to 100644
File size: 5.8 KB
Line 
1#!/usr/bin/env python
2
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##############################################################################
16
17
18"""
19Provide functionality for a C extension model
20
21:WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY
22         DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\corefourshell.h
23         AND RE-RUN THE GENERATOR SCRIPT
24
25"""
26
27from sans.models.BaseComponent import BaseComponent
28from sans_extension.c_models import CCoreFourShellModel
29import copy   
30
31def create_CoreFourShellModel():
32    obj = CoreFourShellModel()
33    #CCoreFourShellModel.__init__(obj) is called by CoreFourShellModel constructor
34    return obj
35
36class CoreFourShellModel(CCoreFourShellModel, BaseComponent):
37    """
38    Class that evaluates a CoreFourShellModel model.
39    This file was auto-generated from ..\c_extensions\corefourshell.h.
40    Refer to that file and the structure it contains
41    for details of the model.
42    List of default parameters:
43         scale           = 1.0
44         rad_core0       = 60.0 [A]
45         sld_core0       = 6.4e-006 [1/A^(2)]
46         thick_shell1    = 10.0 [A]
47         sld_shell1      = 1e-006 [1/A^(2)]
48         thick_shell2    = 10.0 [A]
49         sld_shell2      = 2e-006 [1/A^(2)]
50         thick_shell3    = 10.0 [A]
51         sld_shell3      = 3e-006 [1/A^(2)]
52         thick_shell4    = 10.0 [A]
53         sld_shell4      = 4e-006 [1/A^(2)]
54         sld_solv        = 6.4e-006 [1/A^(2)]
55         background      = 0.001 [1/cm]
56
57    """
58       
59    def __init__(self):
60        """ Initialization """
61       
62        # Initialize BaseComponent first, then sphere
63        BaseComponent.__init__(self)
64        #apply(CCoreFourShellModel.__init__, (self,))
65        CCoreFourShellModel.__init__(self)
66       
67        ## Name of the model
68        self.name = "CoreFourShellModel"
69        ## Model description
70        self.description =""" Calculates the scattering intensity from a core-4 shell structure.
71                scale = scale factor * volume fraction
72                rad_core0: the radius of the core
73                sld_core0: the SLD of the core
74                thick_shelli: the thickness of the i'th shell from the core
75                sld_shelli: the SLD of the i'th shell from the core
76                sld_solv: the SLD of the solvent
77                background: incoherent background"""
78       
79        ## Parameter details [units, min, max]
80        self.details = {}
81        self.details['scale'] = ['', None, None]
82        self.details['rad_core0'] = ['[A]', None, None]
83        self.details['sld_core0'] = ['[1/A^(2)]', None, None]
84        self.details['thick_shell1'] = ['[A]', None, None]
85        self.details['sld_shell1'] = ['[1/A^(2)]', None, None]
86        self.details['thick_shell2'] = ['[A]', None, None]
87        self.details['sld_shell2'] = ['[1/A^(2)]', None, None]
88        self.details['thick_shell3'] = ['[A]', None, None]
89        self.details['sld_shell3'] = ['[1/A^(2)]', None, None]
90        self.details['thick_shell4'] = ['[A]', None, None]
91        self.details['sld_shell4'] = ['[1/A^(2)]', None, None]
92        self.details['sld_solv'] = ['[1/A^(2)]', None, None]
93        self.details['background'] = ['[1/cm]', None, None]
94
95        ## fittable parameters
96        self.fixed=['thick_shell4.width', 'thick_shell1.width', 'thick_shell2.width', 'thick_shell3.width', 'rad_core0.width']
97       
98        ## non-fittable parameters
99        self.non_fittable = []
100       
101        ## parameters with orientation
102        self.orientation_params = []
103   
104    def __reduce_ex__(self, proto):
105        """
106        Overwrite the __reduce_ex__ of PyTypeObject *type call in the init of
107        c model.
108        """
109        return (create_CoreFourShellModel,tuple())
110       
111    def clone(self):
112        """ Return a identical copy of self """
113        return self._clone(CoreFourShellModel())   
114       
115   
116    def run(self, x=0.0):
117        """
118        Evaluate the model
119       
120        :param x: input q, or [q,phi]
121       
122        :return: scattering function P(q)
123       
124        """
125       
126        return CCoreFourShellModel.run(self, x)
127   
128    def runXY(self, x=0.0):
129        """
130        Evaluate the model in cartesian coordinates
131       
132        :param x: input q, or [qx, qy]
133       
134        :return: scattering function P(q)
135       
136        """
137       
138        return CCoreFourShellModel.runXY(self, x)
139       
140    def evalDistribution(self, x=[]):
141        """
142        Evaluate the model in cartesian coordinates
143       
144        :param x: input q[], or [qx[], qy[]]
145       
146        :return: scattering function P(q[])
147       
148        """
149        return CCoreFourShellModel.evalDistribution(self, x)
150       
151    def calculate_ER(self):
152        """
153        Calculate the effective radius for P(q)*S(q)
154       
155        :return: the value of the effective radius
156       
157        """       
158        return CCoreFourShellModel.calculate_ER(self)
159       
160    def set_dispersion(self, parameter, dispersion):
161        """
162        Set the dispersion object for a model parameter
163       
164        :param parameter: name of the parameter [string]
165        :param dispersion: dispersion object of type DispersionModel
166       
167        """
168        return CCoreFourShellModel.set_dispersion(self, parameter, dispersion.cdisp)
169       
170   
171# End of file
Note: See TracBrowser for help on using the repository browser.