Changeset bb584b3 in sasmodels
- Timestamp:
- Dec 23, 2016 12:55:46 PM (8 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- 790b16bb
- Parents:
- 0795293
- Location:
- sasmodels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/conversion_table.py
r0795293 rbb584b3 239 239 "lorentz_exp": "exponent_l", 240 240 "cor_length": "length_l" 241 } 241 }, 242 "CorrLengthModel" 242 243 ], 243 244 "cylinder": [ … … 330 331 "cor_length": "cor_length", 331 332 "volfraction": "volfraction", 332 } 333 }, 334 "FractalCoreShellModel" 333 335 ], 334 336 "fuzzy_sphere": [ … … 349 351 "background": "background", 350 352 "lorentz_scale": "scale_l" 351 } 353 }, 354 "GaussLorentzGelModel" 352 355 ], 353 356 "gaussian_peak": [ … … 356 359 "peak_pos": "q0", 357 360 "sigma": "B", 358 } 361 }, 362 "PeakGaussModel", 359 363 ], 360 364 "gel_fit": [ … … 372 376 { 373 377 "rg": "rg" 374 } 378 }, 379 "GuinierModel", 375 380 ], 376 381 "guinier_porod": [ … … 382 387 "scale": "scale", 383 388 "background": "background" 384 } 389 }, 390 "GuinierPorodModel", 385 391 ], 386 392 "hardsphere": [ … … 510 516 { 511 517 "cor_length": "length" 512 } 518 }, 519 "LorentzModel", 513 520 ], 514 521 "mass_fractal": [ … … 536 543 "i_zero": "scale", 537 544 "background": "background", 538 } 545 }, 546 "DebyeModel", 539 547 ], 540 548 "multilayer_vesicle": [ … … 589 597 "peak_pos": "q0", 590 598 "peak_hwhm": "B" 591 } 599 }, 600 "PeakLorentzModel", 592 601 ], 593 602 "pearl_necklace": [ … … 832 841 "lorentz_length_1": "length_1", 833 842 "background": "background" 834 } 843 }, 844 "TwoLorentzianModel", 835 845 ], 836 846 "two_power_law": [ … … 842 852 "background": "background", 843 853 "crossover": "qc" 844 } 854 }, 855 "TwoPowerLawModel", 845 856 ], 846 857 "unified_power_Rg": [ … … 855 866 "background": "background", 856 867 "scale": "scale", 857 }) 868 }), 869 "UnifiedPowerRgModel", 858 870 ], 859 871 "vesicle": [ -
sasmodels/sasview_model.py
r86e8e66 rbb584b3 60 60 # CoreShellEllipsoidModel => core_shell_ellipsoid:1 61 61 new_name = new_name.split(':')[0] 62 old_name = conversion[0] 62 old_name = conversion[0] if len(conversion) < 3 else conversion[2] 63 63 module_attrs = {old_name: find_model(new_name)} 64 64 ConstructedModule = type(old_name, (), module_attrs)
Note: See TracChangeset
for help on using the changeset viewer.