Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/models/core_shell_cylinder.py

    rf0aa7f8 reb69cce  
    155155 
    156156def ER(radius, thickness, length): 
    157     """ 
    158         Returns the effective radius used in the S*P calculation 
    159     """ 
    160157    radius = radius + thickness 
    161158    length = length + 2 * thickness 
     
    164161 
    165162def VR(radius, thickness, length): 
    166     """ 
    167         Returns volume ratio 
    168     """ 
    169163    whole = pi * (radius + thickness) ** 2 * (length + 2 * thickness) 
    170164    core = pi * radius ** 2 * length 
Note: See TracChangeset for help on using the changeset viewer.