Changeset 859567e in sasmodels


Ignore:
Timestamp:
Apr 17, 2017 9:31:41 AM (7 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, core_shell_microgels, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
cb038a2
Parents:
e755d8a
Message:

explore quadrature options for bcc at low q

Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/special.py

    r597878a r859567e  
    286286    retvalue = 3*sas_j1(x)/x 
    287287    retvalue[x==0] = 1. 
    288      
     288 
    289289def sas_2J1x_x(x): 
    290290    retvalue = 2*sas_J1(x)/x 
     
    294294# Gaussians 
    295295 
    296 Gauss20Wt = [ 
     296Gauss20Wt = np.array([ 
    297297        .0176140071391521, 
    298298        .0406014298003869, 
     
    315315        .0406014298003869, 
    316316        .0176140071391521 
    317 ] 
    318  
    319 Gauss20Z = [ 
     317]) 
     318 
     319Gauss20Z = np.array([ 
    320320        -.993128599185095, 
    321321        -.963971927277914, 
     
    338338        .963971927277914, 
    339339        .993128599185095 
    340 ] 
    341  
    342 Gauss76Wt = [ 
     340]) 
     341 
     342Gauss76Wt = np.array([ 
    343343        .00126779163408536,             #0 
    344344        .00294910295364247, 
     
    417417        .00294910295364247, 
    418418        .00126779163408536              #75 (indexed from 0) 
    419 ] 
    420  
    421 Gauss76Z = [ 
     419]) 
     420 
     421Gauss76Z = np.array([ 
    422422        -.999505948362153,              #0 
    423423        -.997397786355355, 
     
    496496        .997397786355355, 
    497497        .999505948362153                #75 
    498 ] 
    499  
    500 Gauss150Z = [ 
     498]) 
     499 
     500Gauss150Z = np.array([ 
    501501        -0.9998723404457334, 
    502502        -0.9993274305065947, 
     
    649649        0.9993274305065947, 
    650650        0.9998723404457334 
    651 ] 
    652  
    653 Gauss150Wt = [ 
     651]) 
     652 
     653Gauss150Wt = np.array([ 
    654654        0.0003276086705538, 
    655655        0.0007624720924706, 
     
    802802        0.0007624720924706, 
    803803        0.0003276086705538 
    804 ] 
    805  
     804]) 
Note: See TracChangeset for help on using the changeset viewer.