source: sasview/sansmodels/src/sans/models/HayterMSAStructure.py @ 79ac6f8

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 79ac6f8 was 79ac6f8, checked in by Gervaise Alina <gervyh@…>, 14 years ago

working on documentation

  • Property mode set to 100644
File size: 5.2 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\HayterMSA.h
23         AND RE-RUN THE GENERATOR SCRIPT
24
25"""
26
27from sans.models.BaseComponent import BaseComponent
28from sans_extension.c_models import CHayterMSAStructure
29import copy   
30   
31class HayterMSAStructure(CHayterMSAStructure, BaseComponent):
32    """
33    Class that evaluates a HayterMSAStructure model.
34    This file was auto-generated from ..\c_extensions\HayterMSA.h.
35    Refer to that file and the structure it contains
36    for details of the model.
37    List of default parameters:
38         effect_radius   = 20.75 [A]
39         charge          = 19.0
40         volfraction     = 0.0192
41         temperature     = 318.16 [K]
42         saltconc        = 0.0 [M]
43         dielectconst    = 71.08
44
45    """
46       
47    def __init__(self):
48        """ Initialization """
49       
50        # Initialize BaseComponent first, then sphere
51        BaseComponent.__init__(self)
52        CHayterMSAStructure.__init__(self)
53       
54        ## Name of the model
55        self.name = "HayterMSAStructure"
56        ## Model description
57        self.description ="""To calculate the structure factor (the Fourier transform of the
58                pair correlation function g(r)) for a system of
59                charged, spheroidal objects in a dielectric
60                medium.
61                When combined with an appropriate form
62                factor, this allows for inclusion of
63                the interparticle interference effects
64                due to screened coulomb repulsion between
65                charged particles.
66                (Note: charge > 0 required.)
67               
68                Ref: JP Hansen and JB Hayter, Molecular
69                Physics 46, 651-656 (1982).
70                """
71       
72        ## Parameter details [units, min, max]
73        self.details = {}
74        self.details['effect_radius'] = ['[A]', None, None]
75        self.details['charge'] = ['', None, None]
76        self.details['volfraction'] = ['', None, None]
77        self.details['temperature'] = ['[K]', None, None]
78        self.details['saltconc'] = ['[M]', None, None]
79        self.details['dielectconst'] = ['', None, None]
80
81        ## fittable parameters
82        self.fixed=['effect_radius.width']
83       
84        ## parameters with orientation
85        self.orientation_params =[]
86   
87    def clone(self):
88        """ Return a identical copy of self """
89        return self._clone(HayterMSAStructure())   
90       
91    def __getstate__(self):
92        """
93        return object state for pickling and copying
94        """
95        model_state = {'params': self.params, 'dispersion': self.dispersion, 'log': self.log}
96       
97        return self.__dict__, model_state
98       
99    def __setstate__(self, state):
100        """
101        create object from pickled state
102       
103        :param state: the state of the current model
104       
105        """
106       
107        self.__dict__, model_state = state
108        self.params = model_state['params']
109        self.dispersion = model_state['dispersion']
110        self.log = model_state['log']
111       
112   
113    def run(self, x=0.0):
114        """
115        Evaluate the model
116       
117        :param x: input q, or [q,phi]
118       
119        :return: scattering function P(q)
120       
121        """
122       
123        return CHayterMSAStructure.run(self, x)
124   
125    def runXY(self, x=0.0):
126        """
127        Evaluate the model in cartesian coordinates
128       
129        :param x: input q, or [qx, qy]
130       
131        :return: scattering function P(q)
132       
133        """
134       
135        return CHayterMSAStructure.runXY(self, x)
136       
137    def evalDistribution(self, x=[]):
138        """
139        Evaluate the model in cartesian coordinates
140       
141        :param x: input q[], or [qx[], qy[]]
142       
143        :return: scattering function P(q[])
144       
145        """
146        return CHayterMSAStructure.evalDistribution(self, x)
147       
148    def calculate_ER(self):
149        """
150        Calculate the effective radius for P(q)*S(q)
151       
152        :return: the value of the effective radius
153       
154        """       
155        return CHayterMSAStructure.calculate_ER(self)
156       
157    def set_dispersion(self, parameter, dispersion):
158        """
159        Set the dispersion object for a model parameter
160       
161        :param parameter: name of the parameter [string]
162        :param dispersion: dispersion object of type DispersionModel
163       
164        """
165        return CHayterMSAStructure.set_dispersion(self, parameter, dispersion.cdisp)
166       
167   
168# End of file
Note: See TracBrowser for help on using the repository browser.