Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/models/core_shell_parallelepiped.py

    r5810f00 r92dfe0c  
    4444 
    4545    F_{a}(Q,\alpha,\beta)= 
    46     \Bigg(\frac{sin(Q(L_A+2t_A)/2sin\alpha sin\beta)}{Q(L_A+2t_A)/2sin\alpha 
    47     sin\beta)} 
    48     - \frac{sin(QL_A/2sin\alpha sin\beta)}{QL_A/2sin\alpha sin\beta)} \Bigg) 
    49     + \frac{sin(QL_B/2sin\alpha sin\beta)}{QL_B/2sin\alpha sin\beta)} 
    50     + \frac{sin(QL_C/2sin\alpha sin\beta)}{QL_C/2sin\alpha sin\beta)} 
     46    \left[\frac{\sin(Q(L_A+2t_A)/2\sin\alpha \sin\beta)}{Q(L_A+2t_A)/2\sin\alpha\sin\beta} 
     47    - \frac{\sin(QL_A/2\sin\alpha \sin\beta)}{QL_A/2\sin\alpha \sin\beta} \right] 
     48    \left[\frac{\sin(QL_B/2\sin\alpha \sin\beta)}{QL_B/2\sin\alpha \sin\beta} \right] 
     49    \left[\frac{\sin(QL_C/2\sin\alpha \sin\beta)}{QL_C/2\sin\alpha \sin\beta} \right] 
    5150 
    5251.. note:: 
     
    5857 
    5958FITTING NOTES 
    60 If the scale is set equal to the particle volume fraction, |phi|, the returned 
     59If the scale is set equal to the particle volume fraction, $\phi$, the returned 
    6160value is the scattered intensity per unit volume, $I(q) = \phi P(q)$. 
    6261However, **no interparticle interference effects are included in this 
     
    178177# parameters for demo 
    179178demo = dict(scale=1, background=0.0, 
    180             sld_core=1e-6, sld_a=2e-6, sld_b=4e-6, 
    181             sld_c=2e-6, sld_solvent=6e-6, 
     179            sld_core=1, sld_a=2, sld_b=4, sld_c=2, sld_solvent=6, 
    182180            length_a=35, length_b=75, length_c=400, 
    183181            thick_rim_a=10, thick_rim_b=10, thick_rim_c=10, 
     
    191189            theta_pd=10, theta_pd_n=1, 
    192190            phi_pd=10, phi_pd_n=1, 
    193             psi_pd=10, psi_pd_n=10) 
     191            psi_pd=10, psi_pd_n=1) 
    194192 
    195193qx, qy = 0.2 * np.cos(2.5), 0.2 * np.sin(2.5) 
Note: See TracChangeset for help on using the changeset viewer.