source: sasmodels/sasmodels/conversion_table.py @ 5b60eeb

core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 5b60eeb was 5b60eeb, checked in by butler, 8 years ago

Partly fixes conversion_table.py issue created when changing parameter
names, model names, removing a model (old parameteriation of
core_shell_ellipsoid. Reperameterization will probably just break this
altogether. This should fix the broken build but the sum models may not
work properly?

  • Property mode set to 100644
File size: 21.8 KB
Line 
1"""
2Parameter conversion table
3
4*CONVERSION_TABLE* gives the old model name and a dictionary of old parameter
5names for each parameter in sasmodels.  This is used by :mod:`convert` to
6determine the equivalent parameter set when comparing a sasmodels model to
7the models defined in SasView 3.1.
8"""
9
10
11CONVERSION_TABLE = {
12    "adsorbed_layer": [
13        "Core2ndMomentModel",
14        {
15            "scale": "scale",
16            "second_moment": "second_moment",
17            "density_shell": "density_poly",
18            "sld_solvent": "sld_solv",
19            "radius": "radius_core",
20            "volfraction": "volf_cores",
21            "background": "background",
22            "adsorbed_amount": "ads_amount",
23            "sld_shell": "sld_poly"
24        }
25    ],
26    "barbell": [
27        "BarBellModel",
28        {
29            "sld": "sld_barbell",
30            "length": "len_bar",
31            "radius_bell": "rad_bell",
32            "radius": "rad_bar",
33            "sld_solvent": "sld_solv"
34        }
35    ],
36    "bcc_paracrystal": [
37        "BCCrystalModel",
38        {
39            "sld": "sldSph",
40            "sld_solvent": "sldSolv"
41        }
42    ],
43    "be_polyelectrolyte": [
44        "BEPolyelectrolyte",
45        {
46            "ionization_degree": "alpha",
47            "polymer_concentration": "c",
48            "salt_concentration": "cs",
49            "virial_param": "h",
50            "background": "background",
51            "contrast_factor": "k",
52            "bjerrum_length": "lb",
53            "monomer_length": "b"
54        }
55    ],
56    "binary_hard_sphere": [
57        "BinaryHSModel",
58        {
59            "sld_sm": "ss_sld",
60            "sld_lg": "ls_sld",
61            "volfraction_sm": "vol_frac_ss",
62            "radius_lg": "l_radius",
63            "radius_sm": "s_radius",
64            "volfraction_lg": "vol_frac_ls",
65            "sld_solvent": "solvent_sld"
66        }
67    ],
68    "broad_peak": [
69        "BroadPeakModel",
70        {
71            "peak_pos": "q_peak",
72            "scale": None,
73            "lorentz_length": "length_l",
74            "porod_scale": "scale_p",
75            "lorentz_exp": "exponent_l",
76            "lorentz_scale": "scale_l",
77            "porod_exp": "exponent_p"
78        }
79    ],
80    "capped_cylinder": [
81        "CappedCylinderModel",
82        {
83            "sld": "sld_capcyl",
84            "length": "len_cyl",
85            "radius_cap": "rad_cap",
86            "radius": "rad_cyl",
87            "sld_solvent": "sld_solv"
88        }
89    ],
90    "core_multi_shell": [
91        "CoreMultiShellModel",
92        {
93            "thickness": "thick_shell",
94            "sld": "sld_shell",
95            "radius": "rad_core0",
96            "sld_core": "sld_core0",
97            "sld_solvent": "sld_solv",
98            "n": "n_shells",
99            "M0:sld_core": "M0_sld_core0",
100            "mtheta:sld_core": "M_theta_core0",
101            "mphi:sld_core": "M_phi_core0",
102            "M0:sld1": "M0_sld_shell1",
103            "mtheta:sld1": "M_theta_shell1",
104            "mphi:sld1": "M_phi_shell1",
105            "M0:sld2": "M0_sld_shell2",
106            "mtheta:sld2": "M_theta_shell2",
107            "mphi:sld2": "M_phi_shell2",
108            "M0:sld3": "M0_sld_shell3",
109            "mtheta:sld3": "M_theta_shell3",
110            "mphi:sld3": "M_phi_shell3",
111            "M0:sld4": "M0_sld_shell4",
112            "mtheta:sld4": "M_theta_shell4",
113            "mphi:sld4": "M_phi_shell4",
114            "M0:sld_solvent": "M0_sld_solv",
115            "mtheta:sld_solvent": "M_theta_solv",
116            "mphi:sld_solvent": "M_phi_solv",
117            "up:frac_i": "Up_frac_i",
118            "up:frac_f": "Up_frac_f",
119            "up:angle": "Up_theta",
120        }
121    ],
122    "core_shell_bicelle": [
123        "CoreShellBicelleModel",
124        {
125            "phi": "axis_phi",
126            "sld_core": "core_sld",
127            "sld_rim": "rim_sld",
128            "thick_face": "face_thick",
129            "sld_solvent": "solvent_sld",
130            "thick_rim": "rim_thick",
131            "sld_face": "face_sld",
132            "theta": "axis_theta"
133        }
134    ],
135    "core_shell_cylinder": [
136        "CoreShellCylinderModel",
137        {
138            "theta": "axis_theta",
139            "phi": "axis_phi",
140            "sld_shell": "shell_sld",
141            "sld_solvent": "solvent_sld",
142            "sld_core": "core_sld"
143        }
144    ],
145    "core_shell_ellipsoid": [
146        "CoreShellEllipsoidXTModel",
147        {
148            "phi": "axis_phi",
149            "sld_core": "sld_core",
150            "x_core": "X_core",
151            "sld_solvent": "sld_solvent",
152            "thick_shell": "T_shell",
153            "x_polar_shell": "XpolarShell",
154            "theta": "axis_theta",
155            "sld_shell": "sld_shell"
156        }
157    ],
158    "core_shell_parallelepiped": [
159        "CSParallelepipedModel",
160        {
161            "phi": "parallel_phi",
162            "psi": "parallel_psi",
163            "sld_core": "sld_pcore",
164            "sld_c": "sld_rimC",
165            "sld_b": "sld_rimB",
166            "sld_solvent": "sld_solv",
167            "length_a": "shortA",
168            "sld_a": "sld_rimA",
169            "length_b": "midB",
170            "thick_rimc": "rimC",
171            "theta": "parallel_theta",
172            "thick_rim_a": "rimA",
173            "length_c": "longC",
174            "thick_rim_b": "rimB"
175        }
176    ],
177    "core_shell_sphere": [
178        "CoreShellModel",
179        {
180            "sld_core": "core_sld",
181            "sld_shell": "shell_sld",
182            "sld_solvent": "solvent_sld",
183            "M0:sld_core": "M0_sld_core",
184            "mtheta:sld_core": "M_theta_core",
185            "mphi:sld_core": "M_phi_core",
186            "M0:sld_shell": "M0_sld_shell",
187            "mtheta:sld_shell": "M_theta_shell",
188            "mphi:sld_shell": "M_phi_shell",
189            "M0:sld_solvent": "M0_sld_solv",
190            "mtheta:sld_solvent": "M_theta_solv",
191            "mphi:sld_solvent": "M_phi_solv",
192            "up:frac_i": "Up_frac_i",
193            "up:frac_f": "Up_frac_f",
194            "up:angle": "Up_theta"
195        }
196    ],
197    "correlation_length": [
198        "CorrLengthModel",
199        {
200            "porod_scale": "scale_p",
201            "lorentz_scale": "scale_l",
202            "porod_exp": "exponent_p",
203            "lorentz_exp": "exponent_l",
204            "cor_length": "length_l"
205        }
206    ],
207    "cylinder": [
208        "CylinderModel",
209        {
210            "sld": "sldCyl",
211            "theta": "cyl_theta",
212            "phi": "cyl_phi",
213            "sld_solvent": "sldSolv",
214            "M0:sld": "M0_sld_cyl",
215            "mtheta:sld": "M_theta_cyl",
216            "mphi:sld": "M_phi_cyl",
217            "M0:sld_solvent": "M0_sld_solv",
218            "mtheta:sld_solvent": "M_theta_solv",
219            "mphi:sld_solvent": "M_phi_solv",
220            "up:frac_i": "Up_frac_i",
221            "up:frac_f": "Up_frac_f",
222            "up:angle": "Up_theta"
223        }
224    ],
225    "dab": [
226        "DABModel",
227        {
228            "length": "length"
229        }
230    ],
231    "ellipsoid": [
232        "EllipsoidModel",
233        {
234            "phi": "axis_phi",
235            "radius_equatorial": "radius_b",
236            "sld": "sldEll",
237            "theta": "axis_theta",
238            "radius_polar": "radius_a",
239            "sld_solvent": "sldSolv"
240        }
241    ],
242    "elliptical_cylinder": [
243        "EllipticalCylinderModel",
244        {
245            "phi": "cyl_phi",
246            "psi": "cyl_psi",
247            "theta": "cyl_theta",
248            "sld": "sldCyl",
249            "axis_ratio": "r_ratio",
250            "sld_solvent": "sldSolv"
251        }
252    ],
253    "fcc_paracrystal": [
254        "FCCrystalModel",
255        {
256            "sld": "sldSph",
257            "sld_solvent": "sldSolv"
258        }
259    ],
260    "flexible_cylinder": [
261        "FlexibleCylinderModel",
262        {
263            "sld": "sldCyl",
264            "sld_solvent": "sldSolv"
265        }
266    ],
267    "flexible_cylinder_elliptical": [
268        "FlexCylEllipXModel",
269        {
270            "sld": "sldCyl",
271            "sld_solvent": "sldSolv"
272        }
273    ],
274    "fractal": [
275        "FractalModel",
276        {
277            "sld_block": "sldBlock",
278            "radius": "radius",
279            "cor_length": "cor_length",
280            "sld_solvent": "sldSolv",
281            "fractal_dim": "fractal_dim"
282        }
283    ],
284    "fractal_core_shell": [
285        "FractalCoreShellModel",
286        {
287            "sld_shell": "shell_sld",
288            "sld_solvent": "solvent_sld",
289            "sld_core": "core_sld"
290        }
291    ],
292    "fuzzy_sphere": [
293        "FuzzySphereModel",
294        {
295            "sld": "sldSph",
296            "fuzziness": "fuzziness",
297            "radius": "radius",
298            "sld_solvent": "sldSolv"
299        }
300    ],
301    "gauss_lorentz_gel": [
302        "GaussLorentzGelModel",
303        {
304            "gauss_scale": "scale_g",
305            "cor_length_dynamic": "dyn_colength",
306            "cor_length_static": "stat_colength",
307            "background": "background",
308            "lorentz_scale: "scale_l"
309        }
310    ],
311    "gaussian_peak": [
312        "PeakGaussModel",
313        {
314            "sigma": "B"
315        }
316    ],
317    "gel_fit": [
318        "GelFitModel",
319        {
320            "rg": "radius",
321            "lorentz_scale": "lScale",
322            "fractal_dim": "FractalExp",
323            "cor_length": "zeta",
324            "guinier_scale": "gScale"
325        }
326    ],
327    "guinier": [
328        "GuinierModel",
329        {
330            "rg": "rg"
331        }
332    ],
333    "guinier_porod": [
334        "GuinierPorodModel",
335        {
336            "s": "dim",
337            "rg": "rg",
338            "m": "m",
339            "scale": "scale",
340            "background": "background"
341        }
342    ],
343    "hardsphere": [
344        "HardsphereStructure",
345        {
346            "radius_effective_pd": "effect_radius_pd",
347            "radius_effective": "effect_radius",
348            "radius_effective_pd_n": "effect_radius_pd_n"
349        }
350    ],
351    "hayter_msa": [
352        "HayterMSAStructure",
353        {
354            "salt_concentration": "saltconc",
355            "radius_effective_pd": "effect_radius_pd",
356            "radius_effective": "effect_radius",
357            "radius_effective_pd_n": "effect_radius_pd_n"
358        }
359    ],
360    "hollow_cylinder": [
361        "HollowCylinderModel",
362        {
363            "phi": "axis_phi",
364            "scale": "scale",
365            "radius_core": "core_radius",
366            "sld_solvent": "sldSolv",
367            "length": "length",
368            "radius": "radius",
369            "background": "background",
370            "sld": "sldCyl",
371            "theta": "axis_theta"
372        }
373    ],
374    "hollow_rectangular_prism": [
375        "RectangularHollowPrismModel",
376        {
377            "b2a_ratio": "b2a_ratio",
378            "length_a": "short_side",
379            "sld": "sldPipe",
380            "length_c": "c2a_ratio",
381            "sld_solvent": "sldSolv",
382            "thickness": "thickness"
383        }
384    ],
385    "hollow_rectangular_prism_thin_walls": [
386        "RectangularHollowPrismInfThinWallsModel",
387        {
388            "sld": "sldPipe",
389            "b2a_ratio": "b2a_ratio",
390            "length_a": "short_side",
391            "length_c": "c2a_ratio",
392            "sld_solvent": "sldSolv"
393        }
394    ],
395    "lamellar": [
396        "LamellarModel",
397        {
398            "sld": "sld_bi",
399            "sld_solvent": "sld_sol",
400            "thickness": "bi_thick"
401        }
402    ],
403    "lamellar_hg": [
404        "LamellarFFHGModel",
405        {
406            "sld": "sld_tail",
407            "sld_solvent": "sld_solvent",
408            "sld_head": "sld_head",
409            "length_tail": "t_length",
410            "length_head": "h_thickness"
411        }
412    ],
413    "lamellar_hg_stack_caille": [
414        "LamellarPSHGModel",
415        {
416            "Caille_parameter": "caille",
417            "Nlayers": "n_plates",
418            "sld_head": "sld_head",
419            "length_tail": "deltaT",
420            "length_head": "deltaH",
421            "sld": "sld_tail",
422            "sld_solvent": "sld_solvent"
423        }
424    ],
425    "lamellar_stack_caille": [
426        "LamellarPSModel",
427        {
428            "sld": "sld_bi",
429            "Caille_parameter": "caille",
430            "Nlayers": "N_plates",
431            "sld_solvent": "sld_sol",
432            "thickness": "delta"
433        }
434    ],
435    "lamellar_stack_paracrystal": [
436        "LamellarPCrystalModel",
437        {
438            "sld": "sld_layer",
439            "sigma_d": "pd_spacing",
440            "sld_solvent": "sld_solvent"
441        }
442    ],
443    "line": [
444        "LineModel",
445        {
446            "slope": "B",
447            "scale": None,
448            "background": None,
449            "intercept": "A"
450        }
451    ],
452    "linear_pearls": [
453        "LinearPearlsModel",
454        {
455            "sld": "sld_pearl",
456            "sld_solvent": "sld_solv",
457            "edge_sep": "edge_separation"
458        }
459    ],
460    "lorentz": [
461        "LorentzModel",
462        {
463            "cor_length": "length"
464        }
465    ],
466    "mass_fractal": [
467        "MassFractalModel",
468        {
469            "cutoff_length": "co_length",
470            "radius": "radius",
471            "fractal_dim_mass": "mass_dim"
472        }
473    ],
474    "mass_surface_fractal": [
475        "MassSurfaceFractal",
476        {
477            "rg_cluster": "cluster_rg",
478            "fractal_dim_mass": "mass_dim",
479            "radius": "radius",
480            "fractal_dim_surf": "surface_dim",
481            "rg_primary": "primary_rg"
482        }
483    ],
484    "mono_gauss_coil": [
485        "DebyeModel",
486        {
487            "rg": "rg",
488            "scale": "scale",
489            "background": "background"
490        }
491    ],
492    "multilayer_vesicle": [
493        "MultiShellModel",
494        {
495            "radius": "core_radius",
496            "sld_solvent": "core_sld",
497            "n_pairs": "n_pairs",
498            "thick_shell": "s_thickness",
499            "sld": "shell_sld",
500            "thick_solvent": "w_thickness",
501        }
502    ],
503    "onion": [
504        "OnionExpShellModel",
505        {
506            "n_shells": "n_shells",
507            "A": "A_shell",
508            "sld_core": "sld_core0",
509            "radius_core": "rad_core0",
510            "sld_solvent": "sld_solv",
511            "thickness": "thick_shell",
512            "sld_in": "sld_in_shell",
513            "sld_out": "sld_out_shell"
514        }
515    ],
516    "parallelepiped": [
517        "ParallelepipedModel",
518        {
519            "phi": "parallel_phi",
520            "psi": "parallel_psi",
521            "sld_solvent": "sldSolv",
522            "length_a": "short_a",
523            "length_b": "short_b",
524            "sld": "sldPipe",
525            "theta": "parallel_theta",
526            "length_c": "long_c",
527            "M0:sld": "M0_sld_pipe",
528            "mtheta:sld": "M_theta_pipe",
529            "mphi:sld": "M_phi_pipe",
530            "M0:sld_solvent": "M0_sld_solv",
531            "mtheta:sld_solvent": "M_theta_solv",
532            "mphi:sld_solvent": "M_phi_solv",
533            "up:frac_i": "Up_frac_i",
534            "up:frac_f": "Up_frac_f",
535            "up:angle": "Up_theta",
536        }
537    ],
538    "peak_lorentz": [
539        "PeakLorentzModel",
540        {
541            "peak_pos": "q0",
542            "peak_hwhm": "B"
543        }
544    ],
545    "pearl_necklace": [
546        "PearlNecklaceModel",
547        {
548            "scale": "scale",
549            "thick_string": "thick_string",
550            "sld_string": "sld_string",
551            "sld_solvent": "sld_solv",
552            "edge_sep": "edge_separation",
553            "num_pearls": "num_pearls",
554            "radius": "radius",
555            "background": "background",
556            "sld": "sld_pearl"
557        }
558    ],
559    "poly_gauss_coil": [
560        "Poly_GaussCoil",
561        {
562            "rg": "rg",
563            "polydispersity": "poly_m",
564            "scale": "scale",
565            "background": "background"
566        }
567    ],
568    "polymer_excl_volume": [
569        "PolymerExclVolume",
570        {
571            "rg": "rg",
572            "scale": "scale",
573            "background": "background",
574            "porod_exp": "m"
575        }
576    ],
577    "polymer_micelle": [
578        "MicelleSphCoreModel",
579        {
580            "sld_corona": "rho_corona",
581            "sld_solvent": "rho_solv",
582            "sld_core": "rho_core"
583        }
584    ],
585    "porod": [
586        "PorodModel",
587        {
588            "scale": "scale",
589            "background": "background"
590        }
591    ],
592    "power_law": [
593        "PowerLawAbsModel",
594        {
595            "scale": "scale",
596            "background": "background",
597            "power": "m"
598        }
599    ],
600    "pringle": [
601        "PringlesModel",
602        {
603            "scale": "scale",
604            "solvent_sld": "sld_solvent",
605            "thickness": "thickness",
606            "beta": "beta",
607            "radius": "radius",
608            "background": "background",
609            "alpha": "alpha",
610            "sld": "sld_pringle"
611        }
612    ],
613    "raspberry": [
614        "RaspBerryModel",
615        {
616            "volfraction_lg": "volf_Lsph",
617            "volfraction_sm": "volf_Ssph",
618            "radius_sm": "radius_Ssph",
619            "radius_lg": "radius_Lsph",
620            "sld_lg": "sld_Lsph",
621            "sld_sm": "sld_Ssph",
622            "sld_solvent": "sld_solv",
623            "surface_fraction": "surfrac_Ssph",
624            "penetration": "delta_Ssph"
625        }
626    ],
627    "rectangular_prism": [
628        "RectangularPrismModel",
629        {
630            "sld": "sldPipe",
631            "b2a_ratio": "b2a_ratio",
632            "length_a": "short_side",
633            "length_c": "c2a_ratio",
634            "sld_solvent": "sldSolv"
635        }
636    ],
637    "rpa": [
638        "RPA10Model",
639        {
640            "K12": "Kab", "K13": "Kac", "K14": "Kad",
641            "K23": "Kbc", "K24": "Kbd", "K34": "Kcd",
642            "N1": "Na", "N2": "Nb", "N3": "Nc", "N4": "Nd",
643            "L1": "La", "L2": "Lb", "L3": "Lc", "L4": "Ld",
644            "v1": "va", "v2": "vb", "v3": "vc", "v4": "vd",
645            "b1": "ba", "b2": "bb", "b3": "bc", "b4": "bd",
646            "Phi1": "Phia", "Phi2": "Phib", "Phi3": "Phic", "Phi4": "Phid",
647            "case_num": "lcase_n"
648        }
649    ],
650    "sc_paracrystal": [
651        "SCCrystalModel",
652        {
653            "sld": "sldSph",
654            "sld_solvent": "sldSolv"
655        }
656    ],
657    "sphere": [
658        "SphereModel",
659        {
660            "sld": "sldSph",
661            "radius": "radius",
662            "sld_solvent": "sldSolv",
663            "M0:sld": "M0_sld_sph",
664            "mtheta:sld": "M_theta_sph",
665            "mphi:sld": "M_phi_sph",
666            "M0:sld_solvent": "M0_sld_solv",
667            "mtheta:sld_solvent": "M_theta_solv",
668            "mphi:sld_solvent": "M_phi_solv",
669            "up:frac_i": "Up_frac_i",
670            "up:frac_f": "Up_frac_f",
671            "up:angle": "Up_theta"
672        }
673    ],
674    "spherical_sld": [
675        "SphericalSLDModel",
676        # Be lazy and use a generator expression to define
677        #    sld1: sld_flat0, ...
678        #    thickness1: thick_flat0, ...
679        #    interface1: thick_inter0, ...
680        #    shape1: func_inter0, ...
681        #    nu1: nu_inter0, ...
682        # but override thickness1 => rad_cor0 and sld1 => sld_core0.
683        # Note: explicit key,value pairs given by **{...} override the
684        # keys from the gnerator expression ((k,v) for k,v in seq) when
685        # used as dict((generator), **{...})
686        dict(((field_new+str(index+1), field_old+str(index))
687              for field_new, field_old in [("sld", "sld_flat"),
688                                           ("thickness", "thick_flat"),
689                                           ("interface", "thick_inter"),
690                                           ("shape", "func_inter"),
691                                           ("nu", "nu_inter"),]
692              for index in range(11)),
693             **{
694                   "n_shells": "n_shells",
695                   "n_steps": "npts_inter",
696                   "sld_solvent": "sld_solv",
697                   "thickness1": "rad_core0",
698                   "sld1": "sld_core0",
699               })
700    ],
701    "squarewell": [
702        "SquareWellStructure",
703        {
704            "radius_effective_pd": "effect_radius_pd",
705            "radius_effective": "effect_radius",
706            "radius_effective_pd_n": "effect_radius_pd_n"
707        }
708    ],
709    "stacked_disks": [
710        "StackedDisksModel",
711        {
712            "phi": "axis_phi",
713            "sld_layer": "layer_sld",
714            "sld_core": "core_sld",
715            "theta": "axis_theta",
716            "sld_solvent": "solvent_sld",
717            "n_stacking": "n_stacking"
718        }
719    ],
720    "star_polymer": [
721        "StarPolymer",
722        {
723            "arms": "arms",
724            "rg_squared": "R2"
725        }
726    ],
727    "stickyhardsphere": [
728        "StickyHSStructure",
729        {
730            "radius_effective_pd": "effect_radius_pd",
731            "radius_effective": "effect_radius",
732            "radius_effective_pd_n": "effect_radius_pd_n"
733        }
734    ],
735    "surface_fractal": [
736        "SurfaceFractalModel",
737        {
738            "cutoff_length": "co_length",
739            "radius": "radius",
740            "fractal_dim_surf": "surface_dim"
741        }
742    ],
743    "teubner_strey": [
744        "TeubnerStreyModel",
745        {
746            "a2": "scale"
747        }
748    ],
749    "triaxial_ellipsoid": [
750        "TriaxialEllipsoidModel",
751        {
752            "phi": "axis_phi",
753            "radius_equat_minor": "semi_axisA",
754            "radius_polar": "semi_axisC",
755            "radius_equat_major": "semi_axisB",
756            "sld_solvent": "sldSolv",
757            "psi": "axis_psi",
758            "sld": "sldEll",
759            "theta": "axis_theta"
760        }
761    ],
762    "two_lorentzian": [
763        "TwoLorentzianModel",
764        {
765            "lorentz_scale_1": "scale_1",
766            "lorentz_scale_2": "scale_2",
767            "lorentz_exp_1": "exponent_1",
768            "lorentz_exp_2": "exponent_2",
769            "lorentz_length_2": "length_2",
770            "lorentz_length_1": "length_1",
771            "background": "background"
772        }
773    ],
774    "two_power_law": [
775        "TwoPowerLawModel",
776        {
777            "coefficent_1": "coef_A",
778            "power_2": "power2",
779            "power_1": "power1",
780            "background": "background",
781            "crossover": "qc"
782        }
783    ],
784    "unified_power_Rg": [
785        "UnifiedPowerRgModel",
786        {
787        }
788    ],
789    "vesicle": [
790        "VesicleModel",
791        {
792            "sld": "shell_sld",
793            "sld_solvent": "solv_sld"
794        }
795    ]
796}
Note: See TracBrowser for help on using the repository browser.