Changeset eb69cce in sasmodels for sasmodels/models/teubner_strey.py


Ignore:
Timestamp:
Nov 30, 2015 7:18:41 PM (8 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
d18f8a8
Parents:
d138d43
Message:

make model docs more consistent; build pdf docs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/models/teubner_strey.py

    r0e9048f reb69cce  
    4040    1D plot using the default values (w/200 data point). 
    4141 
    42 Reference 
    43 --------- 
     42References 
     43---------- 
    4444 
    4545M Teubner, R Strey, *J. Chem. Phys.*, 87 (1987) 3195 
     
    7777def Iq(q, a2, c1, c2): 
    7878    return 1. / np.polyval([c2, c1, a2], q**2) 
    79 Iq.vectorized = True  # Iq accepts an array of Q values 
     79Iq.vectorized = True  # Iq accepts an array of q values 
    8080 
    8181def Iqxy(qx, qy, a2, c1, c2): 
    8282    return Iq(sqrt(qx**2 + qy**2), a2, c1, c2) 
    83 Iqxy.vectorized = True  # Iqxy accepts arrays of Qx, Qy values 
     83Iqxy.vectorized = True  # Iqxy accepts arrays of qx, qy values 
    8484 
    8585# ER defaults to 0.0 
Note: See TracChangeset for help on using the changeset viewer.