Changes in / [0a33675:0656250] in sasmodels


Ignore:
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • example/sesansfit.py

    r0a33675 r33d38d5  
    1212    from sas.dataloader.loader import Loader 
    1313    loader=Loader() 
     14<<<<<<< HEAD 
     15    data=loader.load('se008724_01.ses') 
     16#    data=loader.load('testsasview1.ses') 
     17  
     18======= 
    1419    filename = 'testsasview1.ses' 
    1520    data=loader.load(filename) 
    1621    if data is None: raise IOError("Could not load file %r"%(filename,)) 
    1722    print dir(data), type(data) 
     23>>>>>>> 0a33675f5dfe63dcfc7345913a0bb44858641acc 
    1824    data.x /=10 
    19      
     25#    print data 
    2026#    data = load_sesans('mydatfile.pz') 
    2127#    sans_data = load_sans('mysansfile.xml') 
     
    4753model = bumps_model.BumpsModel(data, kernel, 
    4854    scale=phi*(1-phi), sld=7.0, solvent_sld=1.0, radius=radius) 
    49 phi.range(0.001,0.90) 
     55phi.range(0.001,0.5) 
    5056#model.radius.pmp(40) 
    51 model.radius.range(100,10000) 
    52 #model.sld.pmp(5) 
     57model.radius.range(1,10000) 
     58#model.sld.pm(5) 
    5359#model.background 
    5460#model.radius_pd=0 
  • sasmodels/bumps_model.py

    raa4946b r33d38d5  
    218218    plt.errorbar(data.x, data.y, yerr=data.dy) 
    219219    plt.plot(data.x, theory, '-', hold=True) 
    220     plt.xlabel('spin echo length (A)') 
    221     plt.ylabel('polarization') 
     220    plt.xlabel('spin echo length (nm)') 
     221    plt.ylabel('polarization (P/P0)') 
    222222    plt.subplot(122) 
    223223    plt.plot(data.x, resid, 'x') 
    224     plt.xlabel('spin echo length (A)') 
    225     plt.ylabel('residuals') 
     224    plt.xlabel('spin echo length (nm)') 
     225    plt.ylabel('residuals (P/P0)') 
    226226 
    227227def _plot_result2D(data, theory, view): 
Note: See TracChangeset for help on using the changeset viewer.