Ignore:
Timestamp:
Aug 25, 2009 3:31:36 PM (15 years ago)
Author:
Jae Cho <jhjcho@…>
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:
ff85cc5
Parents:
c8727c5
Message:

fixed a mistake and changed a para_name

File:
1 edited

Legend:

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

    r870f131 re2afadf  
    3333        List of default parameters: 
    3434         scale           = 1.0  
    35          core_radius     = 100.0 [A] 
     35         radius          = 100.0 [A] 
    3636         thickness       = 30.0 [A] 
    3737         core_sld        = 6.36e-006 [1/A²] 
     
    5151        self.name = "VesicleModel" 
    5252        ## Model description 
    53         self.description ="""Model parameters:  core_radius : Core radius of the vesicle 
     53        self.description ="""Model parameters:  radius : core radius of the vesicle 
    5454                thickness: shell thickness 
    5555                core_sld: core scattering length density 
     
    6161        self.details = {} 
    6262        self.details['scale'] = ['', None, None] 
    63         self.details['core_radius'] = ['[A]', None, None] 
     63        self.details['radius'] = ['[A]', None, None] 
    6464        self.details['thickness'] = ['[A]', None, None] 
    6565        self.details['core_sld'] = ['[1/A²]', None, None] 
     
    6868 
    6969                ## fittable parameters 
    70         self.fixed=['core_radius.width', 'thickness.width'] 
     70        self.fixed=['radius.width', 'thickness.width'] 
    7171         
    7272        ## parameters with orientation 
Note: See TracChangeset for help on using the changeset viewer.