Changeset 3703fde in sasmodels


Ignore:
Timestamp:
Mar 21, 2016 5:05:31 AM (8 years ago)
Author:
wojciech
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:
2be86e2, 3a45c2c
Parents:
d2bcaf4 (diff), 1e9a108 (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 'master' of https://github.com/SasView/sasmodels

Location:
sasmodels/models
Files:
3 added
1 edited
2 moved

Legend:

Unmodified
Added
Removed
  • sasmodels/models/polymer_micelle.py

    rdb74c47 r1e9a108  
    2727from numpy import inf 
    2828 
    29 name = "micelle_spherical_core" 
    30 title = "Micelle Spherical Core model" 
     29name = "polymer_micelle" 
     30title = "Polymer micelle model" 
    3131description = """ 
    32     This model provides the form factor, $P(q)$, for a micelle with 
    33     a spherical core and Gaussian polymer chains attached to the surface. 
     32    This model provides an approximate form factor, P(q), for a micelle with 
     33    a spherical core with Gaussian polymer chains attached to the surface. 
    3434    """ 
    35 category = "shape-independent" 
     35category = "shape:sphere" 
    3636 
    3737# pylint: disable=bad-whitespace, line-too-long 
     
    5151# pylint: enable=bad-whitespace, line-too-long 
    5252 
    53 source = ["lib/sph_j1c.c", "micelle_spherical_core.c"] 
     53source = ["lib/sph_j1c.c", "polymer_micelle_kernel.c"] 
    5454 
    5555demo = dict(scale=1, background=0, 
     
    7575    ] 
    7676# RKH 20Mar2016 - need to check whether the core & corona volumes are per monomer ??? and how aggregation number works! 
     77# renamed from micelle_spherical_core to polymer_micelle, moved from shape-independent to spheres section. 
     78# Ought to be able to add polydisp to core? And add ability to x by S(Q) ? 
  • sasmodels/models/raspberry.c

    ra2d8a67 r616df8f  
    2727 
    2828 
    29     double vfL, rL, sldL, vfS, rS, sldS, deltaS, delrhoL, delrhoS, sldSolv, aSs; 
     29    double vfL, rL, sldL, vfS, rS, sldS, deltaS, delrhoL, delrhoS, sldSolv; 
    3030    double VL, VS, Np, f2, fSs; 
    3131    double psiL,psiS; 
    32     double sfLS,sfSS,Np2,fSs2; 
     32    double sfLS,sfSS; 
    3333    double slT; 
    3434  
Note: See TracChangeset for help on using the changeset viewer.