Changeset 753552d in sasview
- Timestamp:
- Oct 23, 2008 11:48:24 AM (16 years ago)
- 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
- Location:
- sansmodels/src/sans/models
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
sansmodels/src/sans/models/DABModel.py
r4e2f6ef8 r753552d 29 29 ## Name of the model 30 30 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""" 37 37 ## Define parameters 38 38 self.params = {} -
sansmodels/src/sans/models/LorentzModel.py
r4e2f6ef8 r753552d 30 30 self.name = "Lorentz" 31 31 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 \ 34 33 L = screen Length\n\ 35 34 scale = scale factor\n\ -
sansmodels/src/sans/models/PorodModel.py
r5f89fb8 r753552d 28 28 self.params['scale'] = 1.0 29 29 self.params['background'] = 0.0 30 self.description='' 30 self.description= """The Porod model. 31 I(q) = scale/q^4""" 31 32 32 33 ## Parameter details [units, min, max] -
sansmodels/src/sans/models/PowerLawModel.py
ra55fac1 r753552d 35 35 self.params['scale'] = 1.0 36 36 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""" 38 43 ## Parameter details [units, min, max] 39 44 self.details = {} -
sansmodels/src/sans/models/Sin.py
r5f89fb8 r753552d 18 18 ## Name of the model 19 19 self.name = "Sin" 20 self.description='' 20 self.description=""" the sin model 21 F(x)=sin(x) 22 """ 21 23 ## Parameter details [units, min, max] 22 24 self.details = {} -
sansmodels/src/sans/models/TeubnerStreyModel.py
r5f89fb8 r753552d 31 31 ## Name of the model 32 32 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""" 34 40 ## Define parameters 35 41 self.params = {}
Note: See TracChangeset
for help on using the changeset viewer.