Changeset 93cac17 in sasmodels for sasmodels/product.py


Ignore:
Timestamp:
Mar 29, 2019 4:43:48 PM (5 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
ticket-1257-vesicle-product
Children:
7eb2a4d
Parents:
89dba62 (diff), 065d77d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'ticket_822_v5_unit_tests' into ticket-1257-vesicle-product

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/product.py

    rb2f0e5d r93cac17  
    295295    The result may be an array or a float. 
    296296    """ 
     297    # CRUFT: remove effective_radius once SasView 5.0 is released. 
    297298    if beta_mode: 
    298299        # TODO: 1. include calculated Q vector 
     
    304305            ("S_eff(Q)", 1 + (F**2 / Fsq)*(S-1)), 
    305306            ("effective_radius", radius_effective), 
     307            ("radius_effective", radius_effective), 
    306308            # ("I(Q)", scale*(Fsq + (F**2)*(S-1)) + bg), 
    307309        )) 
     
    311313            ("S(Q)", S), 
    312314            ("effective_radius", radius_effective), 
     315            ("radius_effective", radius_effective), 
    313316        )) 
    314317    return parts 
Note: See TracChangeset for help on using the changeset viewer.