Changeset f67f26c in sasmodels


Ignore:
Timestamp:
Aug 1, 2016 7:32:52 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:
4edec6f
Parents:
58210db
Message:

multilayer vesicle: shell thickness is not an sld

Location:
sasmodels
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/compare.py

    r0c24a82 rf67f26c  
    451451        # paying for parameter conversion each time to keep life simple, if not fast 
    452452        oldpars = revert_pars(model_info, pars) 
     453        #print("sasview pars",oldpars) 
    453454        for k, v in oldpars.items(): 
    454455            name_attr = k.split('.')  # polydispersity components 
  • sasmodels/conversion_table.py

    rf1765a2 rf67f26c  
    509509        "MultiShellModel", 
    510510        { 
     511            "radius": "core_radius", 
     512            "sld_solvent": "core_sld", 
     513            "n_pairs": "n_pairs", 
     514            "thick_shell": "s_thickness", 
    511515            "sld": "shell_sld", 
    512516            "thick_solvent": "w_thickness", 
    513             "thick_shell": "s_thickness", 
    514             "radius": "core_radius", 
    515             "sld_solvent": "core_sld" 
    516517        } 
    517518    ], 
  • sasmodels/models/multilayer_vesicle.py

    r42356c8 rf67f26c  
    7474    ["volfraction", "",  0.05, [0.0, 1],  "", "volume fraction of vesicles"], 
    7575    ["radius", "Ang", 60.0, [0.0, inf],  "", "Core radius of the multishell"], 
    76     ["thick_shell", "Ang",        10.0, [0.0, inf],  "sld", "Shell thickness"], 
     76    ["thick_shell", "Ang",        10.0, [0.0, inf],  "", "Shell thickness"], 
    7777    ["thick_solvent", "Ang",        10.0, [0.0, inf],  "", "Water thickness"], 
    7878    ["sld_solvent",    "1e-6/Ang^2",  6.4, [-inf, inf], "sld", "Core scattering length density"], 
Note: See TracChangeset for help on using the changeset viewer.