Changes in / [a297255:790b16bb] in sasmodels


Ignore:
Location:
sasmodels
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/conversion_table.py

    ra297255 rbb584b3  
    237237            "lorentz_exp": "exponent_l", 
    238238            "cor_length": "length_l" 
    239         } 
     239        }, 
     240        "CorrLengthModel" 
    240241    ], 
    241242    "cylinder": [ 
     
    328329            "cor_length": "cor_length", 
    329330            "volfraction": "volfraction", 
    330         } 
     331        }, 
     332        "FractalCoreShellModel" 
    331333    ], 
    332334    "fuzzy_sphere": [ 
     
    347349            "background": "background", 
    348350            "lorentz_scale": "scale_l" 
    349         } 
     351        }, 
     352        "GaussLorentzGelModel" 
    350353    ], 
    351354    "gaussian_peak": [ 
     
    354357            "peak_pos": "q0", 
    355358            "sigma": "B", 
    356         } 
     359        }, 
     360        "PeakGaussModel", 
    357361    ], 
    358362    "gel_fit": [ 
     
    370374        { 
    371375            "rg": "rg" 
    372         } 
     376        }, 
     377        "GuinierModel", 
    373378    ], 
    374379    "guinier_porod": [ 
     
    380385            "scale": "scale", 
    381386            "background": "background" 
    382         } 
     387        }, 
     388        "GuinierPorodModel", 
    383389    ], 
    384390    "hardsphere": [ 
     
    508514        { 
    509515            "cor_length": "length" 
    510         } 
     516        }, 
     517        "LorentzModel", 
    511518    ], 
    512519    "mass_fractal": [ 
     
    534541            "i_zero": "scale", 
    535542            "background": "background", 
    536         } 
     543        }, 
     544        "DebyeModel", 
    537545    ], 
    538546    "multilayer_vesicle": [ 
     
    587595            "peak_pos": "q0", 
    588596            "peak_hwhm": "B" 
    589         } 
     597        }, 
     598        "PeakLorentzModel", 
    590599    ], 
    591600    "pearl_necklace": [ 
     
    830839            "lorentz_length_1": "length_1", 
    831840            "background": "background" 
    832         } 
     841        }, 
     842        "TwoLorentzianModel", 
    833843    ], 
    834844    "two_power_law": [ 
     
    840850            "background": "background", 
    841851            "crossover": "qc" 
    842         } 
     852        }, 
     853        "TwoPowerLawModel", 
    843854    ], 
    844855    "unified_power_Rg": [ 
     
    853864                   "background": "background", 
    854865                   "scale": "scale", 
    855                }) 
     866               }), 
     867        "UnifiedPowerRgModel", 
    856868    ], 
    857869    "vesicle": [ 
  • sasmodels/sasview_model.py

    ra297255 rbb584b3  
    6060        # CoreShellEllipsoidModel => core_shell_ellipsoid:1 
    6161        new_name = new_name.split(':')[0] 
    62         old_name = conversion[0] 
     62        old_name = conversion[0] if len(conversion) < 3 else conversion[2] 
    6363        module_attrs = {old_name: find_model(new_name)} 
    6464        ConstructedModule = type(old_name, (), module_attrs) 
Note: See TracChangeset for help on using the changeset viewer.