Changes in / [db74c47:b4aba0f] in sasmodels


Ignore:
Files:
3 added
2 edited

Legend:

Unmodified
Added
Removed
  • doc/conf.py

    r22975f0 r39674a0  
    5656# General information about the project. 
    5757project = 'SAS Models' 
    58 copyright = '2014, sasview team' 
     58copyright = '2016, sasview team' 
    5959 
    6060# The version info for the project you're documenting, acts as replacement for 
  • sasmodels/sesans.py

    ra154ad16 rc94577f  
    189189        integral = besselj(0, q*SElength_i)*Iq*q 
    190190        G[i] = np.sum(integral) 
     191    G0 = np.sum(Iq*q) 
    191192 
    192193    # [m^-1] step size in q, needed for integration 
     
    195196    # integration step, convert q into [m**-1] and 2 pi circle integration 
    196197    G *= dq*1e10*2*pi 
    197  
    198     P = exp(thickness*wavelength**2/(4*pi**2)*(G-G[0])) 
     198    G0 *= dq*1e10*2*pi 
     199 
     200    P = exp(thickness*wavelength**2/(4*pi**2)*(G-G0)) 
    199201 
    200202    return P 
Note: See TracChangeset for help on using the changeset viewer.