source: sasview/sansmodels/src/sans/models/LamellarPSModel.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.5 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\lamellarPS.h
23         AND RE-RUN THE GENERATOR SCRIPT
24
25"""
26
27from sans.models.BaseComponent import BaseComponent
28from sans_extension.c_models import CLamellarPSModel
29import copy   
30
31def create_LamellarPSModel():
32    obj = LamellarPSModel()
33    #CLamellarPSModel.__init__(obj) is called by LamellarPSModel constructor
34    return obj
35
36class LamellarPSModel(CLamellarPSModel, BaseComponent):
37    """
38    Class that evaluates a LamellarPSModel model.
39    This file was auto-generated from ..\c_extensions\lamellarPS.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         spacing         = 400.0 [A]
45         delta           = 30.0 [A]
46         sld_bi          = 6.3e-006 [1/A^(2)]
47         sld_sol         = 1e-006 [1/A^(2)]
48         n_plates        = 20.0
49         caille          = 0.1
50         background      = 0.0 [1/cm]
51
52    """
53       
54    def __init__(self):
55        """ Initialization """
56       
57        # Initialize BaseComponent first, then sphere
58        BaseComponent.__init__(self)
59        #apply(CLamellarPSModel.__init__, (self,))
60        CLamellarPSModel.__init__(self)
61       
62        ## Name of the model
63        self.name = "LamellarPSModel"
64        ## Model description
65        self.description ="""[Concentrated Lamellar Form Factor] Calculates the scattered
66                intensity from a lyotropic lamellar phase.
67                The intensity (form factor and structure
68                factor)calculated is for lamellae of
69                uniform scattering length density that
70                are randomly distributed in solution
71                (a powder average). The lamellae thickness
72                is polydisperse. The model can also
73                be applied to large, multi-lamellar vesicles.
74                No resolution smeared version is included
75                in the structure factor of this model.
76                *Parameters: spacing = repeat spacing,
77                delta = bilayer thickness,
78                sld_bi = SLD_bilayer
79                sld_sol = SLD_solvent
80                n_plate = # of Lamellar plates
81                caille = Caille parameter (<0.8 or <1)
82                background = incoherent bgd
83                scale = scale factor"""
84       
85        ## Parameter details [units, min, max]
86        self.details = {}
87        self.details['scale'] = ['', None, None]
88        self.details['spacing'] = ['[A]', None, None]
89        self.details['delta'] = ['[A]', None, None]
90        self.details['sld_bi'] = ['[1/A^(2)]', None, None]
91        self.details['sld_sol'] = ['[1/A^(2)]', None, None]
92        self.details['n_plates'] = ['', None, None]
93        self.details['caille'] = ['', None, None]
94        self.details['background'] = ['[1/cm]', None, None]
95
96        ## fittable parameters
97        self.fixed=['delta.width', 'spacing.width']
98       
99        ## non-fittable parameters
100        self.non_fittable = []
101       
102        ## parameters with orientation
103        self.orientation_params = []
104   
105    def __reduce_ex__(self, proto):
106        """
107        Overwrite the __reduce_ex__ of PyTypeObject *type call in the init of
108        c model.
109        """
110        return (create_LamellarPSModel,tuple())
111       
112    def clone(self):
113        """ Return a identical copy of self """
114        return self._clone(LamellarPSModel())   
115       
116   
117    def run(self, x=0.0):
118        """
119        Evaluate the model
120       
121        :param x: input q, or [q,phi]
122       
123        :return: scattering function P(q)
124       
125        """
126       
127        return CLamellarPSModel.run(self, x)
128   
129    def runXY(self, x=0.0):
130        """
131        Evaluate the model in cartesian coordinates
132       
133        :param x: input q, or [qx, qy]
134       
135        :return: scattering function P(q)
136       
137        """
138       
139        return CLamellarPSModel.runXY(self, x)
140       
141    def evalDistribution(self, x=[]):
142        """
143        Evaluate the model in cartesian coordinates
144       
145        :param x: input q[], or [qx[], qy[]]
146       
147        :return: scattering function P(q[])
148       
149        """
150        return CLamellarPSModel.evalDistribution(self, x)
151       
152    def calculate_ER(self):
153        """
154        Calculate the effective radius for P(q)*S(q)
155       
156        :return: the value of the effective radius
157       
158        """       
159        return CLamellarPSModel.calculate_ER(self)
160       
161    def set_dispersion(self, parameter, dispersion):
162        """
163        Set the dispersion object for a model parameter
164       
165        :param parameter: name of the parameter [string]
166        :param dispersion: dispersion object of type DispersionModel
167       
168        """
169        return CLamellarPSModel.set_dispersion(self, parameter, dispersion.cdisp)
170       
171   
172# End of file
Note: See TracBrowser for help on using the repository browser.