source: sasview/sansmodels/src/sans/models/StickyHSStructure.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: 4.9 KB
RevLine 
[1bbf2ac]1#!/usr/bin/env python
2
[79ac6f8]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##############################################################################
[1bbf2ac]16
17
[79ac6f8]18"""
19Provide functionality for a C extension model
[1bbf2ac]20
[79ac6f8]21:WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY
22         DO NOT MODIFY THIS FILE, MODIFY ..\c_extensions\StickyHS.h
23         AND RE-RUN THE GENERATOR SCRIPT
[1bbf2ac]24
25"""
26
27from sans.models.BaseComponent import BaseComponent
28from sans_extension.c_models import CStickyHSStructure
29import copy   
[96656e3]30
31def create_StickyHSStructure():
32    obj = StickyHSStructure()
33    #CStickyHSStructure.__init__(obj) is called by StickyHSStructure constructor
34    return obj
35
[1bbf2ac]36class StickyHSStructure(CStickyHSStructure, BaseComponent):
[79ac6f8]37    """
38    Class that evaluates a StickyHSStructure model.
39    This file was auto-generated from ..\c_extensions\StickyHS.h.
40    Refer to that file and the structure it contains
41    for details of the model.
42    List of default parameters:
[5eb9154]43         effect_radius   = 50.0 [A]
[1bbf2ac]44         volfraction     = 0.1
45         perturb         = 0.05
46         stickiness      = 0.2
47
48    """
49       
50    def __init__(self):
51        """ Initialization """
52       
53        # Initialize BaseComponent first, then sphere
54        BaseComponent.__init__(self)
[96656e3]55        #apply(CStickyHSStructure.__init__, (self,))
[1bbf2ac]56        CStickyHSStructure.__init__(self)
57       
58        ## Name of the model
59        self.name = "StickyHSStructure"
60        ## Model description
[1ed3834]61        self.description =""" Structure Factor for interacting particles:                               .
[1bbf2ac]62               
63                The interaction potential is
64               
65                U(r)= inf , r < 2R
66                = -Uo  , 2R < r < 2R + w
67                = 0   , r >= 2R +w
68               
[5eb9154]69                R: effective radius of the hardsphere
[1bbf2ac]70                stickiness = [exp(Uo/kT)]/(12*perturb)
71                perturb = w/(w+ 2R) , 0.01 =< w <= 0.1
72                w: The width of the square well ,w > 0
73                v: The volume fraction , v > 0
74               
[1ed3834]75                Ref: Menon, S. V. G.,et.al., J. Chem.
76                Phys., 1991, 95(12), 9186-9190."""
[1bbf2ac]77       
[fe9c19b4]78        ## Parameter details [units, min, max]
[1bbf2ac]79        self.details = {}
[5eb9154]80        self.details['effect_radius'] = ['[A]', None, None]
[1bbf2ac]81        self.details['volfraction'] = ['', None, None]
82        self.details['perturb'] = ['', None, None]
83        self.details['stickiness'] = ['', None, None]
84
[fe9c19b4]85        ## fittable parameters
[5eb9154]86        self.fixed=['effect_radius.width']
[0824909]87       
[35aface]88        ## non-fittable parameters
[96656e3]89        self.non_fittable = []
[35aface]90       
[0824909]91        ## parameters with orientation
[96656e3]92        self.orientation_params = []
[1bbf2ac]93   
[96656e3]94    def __reduce_ex__(self, proto):
[79ac6f8]95        """
[96656e3]96        Overwrite the __reduce_ex__ of PyTypeObject *type call in the init of
97        c model.
[79ac6f8]98        """
[96656e3]99        return (create_StickyHSStructure,tuple())
[fe9c19b4]100       
[96656e3]101    def clone(self):
102        """ Return a identical copy of self """
103        return self._clone(StickyHSStructure())   
[fe9c19b4]104       
[1bbf2ac]105   
[79ac6f8]106    def run(self, x=0.0):
107        """
108        Evaluate the model
109       
110        :param x: input q, or [q,phi]
111       
112        :return: scattering function P(q)
113       
[1bbf2ac]114        """
115       
116        return CStickyHSStructure.run(self, x)
117   
[79ac6f8]118    def runXY(self, x=0.0):
119        """
120        Evaluate the model in cartesian coordinates
121       
122        :param x: input q, or [qx, qy]
123       
124        :return: scattering function P(q)
125       
[1bbf2ac]126        """
127       
128        return CStickyHSStructure.runXY(self, x)
129       
[79ac6f8]130    def evalDistribution(self, x=[]):
131        """
132        Evaluate the model in cartesian coordinates
133       
134        :param x: input q[], or [qx[], qy[]]
135       
136        :return: scattering function P(q[])
137       
[9bd69098]138        """
[f9a1279]139        return CStickyHSStructure.evalDistribution(self, x)
[9bd69098]140       
[5eb9154]141    def calculate_ER(self):
[79ac6f8]142        """
143        Calculate the effective radius for P(q)*S(q)
144       
145        :return: the value of the effective radius
146       
[5eb9154]147        """       
148        return CStickyHSStructure.calculate_ER(self)
149       
[1bbf2ac]150    def set_dispersion(self, parameter, dispersion):
151        """
[79ac6f8]152        Set the dispersion object for a model parameter
153       
154        :param parameter: name of the parameter [string]
155        :param dispersion: dispersion object of type DispersionModel
156       
[1bbf2ac]157        """
158        return CStickyHSStructure.set_dispersion(self, parameter, dispersion.cdisp)
159       
160   
161# End of file
Note: See TracBrowser for help on using the repository browser.