Changeset f0aa7f8 in sasmodels


Ignore:
Timestamp:
Feb 18, 2016 11:01:36 AM (8 years ago)
Author:
mathieu
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:
ef822dc
Parents:
068cebd
Message:

Fix pylint

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/models/core_shell_cylinder.py

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