Changeset 753552d in sasview


Ignore:
Timestamp:
Oct 23, 2008 11:48:24 AM (16 years ago)
Author:
Gervaise Alina <gervyh@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
bbc8013
Parents:
4e2f6ef8
Message:

description added

Location:
sansmodels/src/sans/models
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • sansmodels/src/sans/models/DABModel.py

    r4e2f6ef8 r753552d  
    2929        ## Name of the model 
    3030        self.name = "DAB_Model" 
    31         self.description=" DAB (Debye Anderson Brumberger) function.\n\ 
    32         F(x) = scale/( 1 + (x*L)^2 )^(2) + background\n\ 
    33         The model has three parameters:\n \ 
    34         L             =  Correlation Length\n\ 
    35         scale         =  scale factor\n\ 
    36         background    =  incoherent background\n" 
     31        self.description="""F(x) = scale/( 1 + (x*L)^2 )^(2) + background 
     32         
     33        The model has three parameters:  
     34        L             =  Correlation Length 
     35        scale         =  scale factor 
     36        background    =  incoherent background""" 
    3737        ## Define parameters 
    3838        self.params = {} 
  • sansmodels/src/sans/models/LorentzModel.py

    r4e2f6ef8 r753552d  
    3030        self.name = "Lorentz" 
    3131        self.description="Lorentz (Ornstein-Zernicke) model.\n\ 
    32         F(x) = scale/( 1 + (x*L)^2 ) + bkd\n\ 
    33         The model has three parameters:\n \ 
     32        F(x) = scale/( 1 + (x*L)^2 ) + bkd \nThe model has three parameters:\n \ 
    3433        L     =  screen Length\n\ 
    3534        scale  =  scale factor\n\ 
  • sansmodels/src/sans/models/PorodModel.py

    r5f89fb8 r753552d  
    2828        self.params['scale'] = 1.0 
    2929        self.params['background'] = 0.0 
    30         self.description='' 
     30        self.description= """The Porod model. 
     31        I(q) = scale/q^4""" 
    3132 
    3233        ## Parameter details [units, min, max] 
  • sansmodels/src/sans/models/PowerLawModel.py

    ra55fac1 r753552d  
    3535        self.params['scale']        = 1.0 
    3636        self.params['background']   = 0.0 
    37  
     37        self.description=""" The Power_Law model. 
     38        F(x) = scale* (x)^(-m) + bkd 
     39        The model has three parameters:  
     40        m     =  power 
     41        scale  =  scale factor 
     42        bkd    =  incoherent background""" 
    3843        ## Parameter details [units, min, max] 
    3944        self.details = {} 
  • sansmodels/src/sans/models/Sin.py

    r5f89fb8 r753552d  
    1818        ## Name of the model 
    1919        self.name = "Sin" 
    20         self.description='' 
     20        self.description=""" the sin model 
     21        F(x)=sin(x) 
     22        """ 
    2123        ## Parameter details [units, min, max] 
    2224        self.details = {} 
  • sansmodels/src/sans/models/TeubnerStreyModel.py

    r5f89fb8 r753552d  
    3131        ## Name of the model 
    3232        self.name = "Teubner Strey" 
    33         self.description='' 
     33        self.description="""The TeubnerStrey model. 
     34        F(x) = 1/( scale + c1*(x)^(2)+  c2*(x)^(4)) + bkd 
     35        The model has Four parameters:  
     36        scale  =  scale factor 
     37        c1     =  constant 
     38        c2     =  constant 
     39        bkd    =  incoherent background""" 
    3440        ## Define parameters 
    3541        self.params = {} 
Note: See TracChangeset for help on using the changeset viewer.