source: sasview/sansmodels/src/sans/models/DABModel.py @ 3db3895

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 3db3895 was 3db3895, checked in by Mathieu Doucet <doucetm@…>, 16 years ago

Fixed new models - still need validation

  • Property mode set to 100644
File size: 2.5 KB
Line 
1#!/usr/bin/env python
2"""
3    Provide F(x) = scale/( 1 + (x*L)^2 )^(2) + background
4    DAB (Debye Anderson Brumberger) function as a BaseComponent model
5"""
6
7from sans.models.BaseComponent import BaseComponent
8import math
9
10class DABModel(BaseComponent):
11   
12    """
13        Class that evaluates a DAB model.
14       
15        F(x) = scale/( 1 + (x*L)^2 )^(2) + background
16       
17        The model has three parameters:
18            L             =  Correlation Length
19            scale         =  scale factor
20            background    =  incoherent background
21    """
22       
23    def __init__(self):
24        """ Initialization """
25       
26        # Initialize BaseComponent first, then sphere
27        BaseComponent.__init__(self)
28       
29        ## Name of the model
30        self.name = "DAB_Model"
31
32        ## Define parameters
33        self.params = {}
34        self.params['length']             = 50.0
35        self.params['scale']              = 1.0
36        self.params['background']         = 0.0
37
38        ## Parameter details [units, min, max]
39        self.details = {}
40        self.details['length']            = ['', None, None]
41        self.details['scale']             = ['', None, None]
42        self.details['background']        = ['', None, None]
43               
44    def _DAB(self, x):
45        """
46            Evaluate  F(x) = scale/( 1 + (x*L)^2 )^(2) + background
47           
48        """
49        return self.params['scale']/math.pow(( 1 + math.pow(x * self.params['length'],2)),2) \
50         + self.params['background']
51       
52   
53    def run(self, x = 0.0):
54        """ Evaluate the model
55            @param x: input q-value (float or [float, float] as [r, theta])
56            @return: (DAB value)
57        """
58        if x.__class__.__name__ == 'list':
59            return self._DAB(x[0]*math.cos(x[1]))*self._DAB(x[0]*math.sin(x[1]))
60        elif x.__class__.__name__ == 'tuple':
61            raise ValueError, "Tuples are not allowed as input to BaseComponent models"
62        else:
63            return self._DAB(x)
64   
65    def runXY(self, x = 0.0):
66        """ Evaluate the model
67            @param x: input q-value (float or [float, float] as [qx, qy])
68            @return: DAB value
69        """
70        if x.__class__.__name__ == 'list':
71            return self._DAB(x[0])*self._DAB(x[1])
72        elif x.__class__.__name__ == 'tuple':
73            raise ValueError, "Tuples are not allowed as input to BaseComponent models"
74        else:
75            return self._DAB(x)
Note: See TracBrowser for help on using the repository browser.