source: sasview/sansmodels/src/sans/models/LamellarModel.py @ 3eac3816

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 3eac3816 was 92df66f8, checked in by Gervaise Alina <gervyh@…>, 13 years ago

commit wrap model

  • Property mode set to 100644
File size: 5.0 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\lamellar.h
23         AND RE-RUN THE GENERATOR SCRIPT
24
25"""
26
27from sans.models.BaseComponent import BaseComponent
28from sans.models.sans_extension.c_models import CLamellarModel
29import copy   
30
31def create_LamellarModel():
32    obj = LamellarModel()
33    #CLamellarModel.__init__(obj) is called by LamellarModel constructor
34    return obj
35
36class LamellarModel(CLamellarModel, BaseComponent):
37    """
38    Class that evaluates a LamellarModel model.
39    This file was auto-generated from ..\c_extensions\lamellar.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         bi_thick        = 50.0 [A]
45         sld_bi          = 1e-06 [1/A^(2)]
46         sld_sol         = 6.3e-06 [1/A^(2)]
47         background      = 0.0 [1/cm]
48
49    """
50       
51    def __init__(self):
52        """ Initialization """
53       
54        # Initialize BaseComponent first, then sphere
55        BaseComponent.__init__(self)
56        #apply(CLamellarModel.__init__, (self,))
57        CLamellarModel.__init__(self)
58       
59        ## Name of the model
60        self.name = "LamellarModel"
61        ## Model description
62        self.description ="""[Dilute Lamellar Form Factor](from a lyotropic lamellar phase)
63                I(q)= 2*pi*P(q)/(delta *q^(2)), where
64                P(q)=2*(contrast/q)^(2)*(1-cos(q*delta))^(2))
65                bi_thick = bilayer thickness
66                sld_bi = SLD of bilayer
67                sld_sol = SLD of solvent
68                background = Incoherent background
69                scale = scale factor
70                """
71       
72        ## Parameter details [units, min, max]
73        self.details = {}
74        self.details['scale'] = ['', None, None]
75        self.details['bi_thick'] = ['[A]', None, None]
76        self.details['sld_bi'] = ['[1/A^(2)]', None, None]
77        self.details['sld_sol'] = ['[1/A^(2)]', None, None]
78        self.details['background'] = ['[1/cm]', None, None]
79
80        ## fittable parameters
81        self.fixed=[]
82       
83        ## non-fittable parameters
84        self.non_fittable = []
85       
86        ## parameters with orientation
87        self.orientation_params = []
88
89    def __setstate__(self, state):
90        """
91        restore the state of a model from pickle
92        """
93        self.__dict__, self.params, self.dispersion = state
94       
95    def __reduce_ex__(self, proto):
96        """
97        Overwrite the __reduce_ex__ of PyTypeObject *type call in the init of
98        c model.
99        """
100        state = (self.__dict__, self.params, self.dispersion)
101        return (create_LamellarModel,tuple(), state, None, None)
102       
103    def clone(self):
104        """ Return a identical copy of self """
105        return self._clone(LamellarModel())   
106       
107   
108    def run(self, x=0.0):
109        """
110        Evaluate the model
111       
112        :param x: input q, or [q,phi]
113       
114        :return: scattering function P(q)
115       
116        """
117       
118        return CLamellarModel.run(self, x)
119   
120    def runXY(self, x=0.0):
121        """
122        Evaluate the model in cartesian coordinates
123       
124        :param x: input q, or [qx, qy]
125       
126        :return: scattering function P(q)
127       
128        """
129       
130        return CLamellarModel.runXY(self, x)
131       
132    def evalDistribution(self, x=[]):
133        """
134        Evaluate the model in cartesian coordinates
135       
136        :param x: input q[], or [qx[], qy[]]
137       
138        :return: scattering function P(q[])
139       
140        """
141        return CLamellarModel.evalDistribution(self, x)
142       
143    def calculate_ER(self):
144        """
145        Calculate the effective radius for P(q)*S(q)
146       
147        :return: the value of the effective radius
148       
149        """       
150        return CLamellarModel.calculate_ER(self)
151       
152    def set_dispersion(self, parameter, dispersion):
153        """
154        Set the dispersion object for a model parameter
155       
156        :param parameter: name of the parameter [string]
157        :param dispersion: dispersion object of type DispersionModel
158       
159        """
160        return CLamellarModel.set_dispersion(self, parameter, dispersion.cdisp)
161       
162   
163# End of file
Note: See TracBrowser for help on using the repository browser.