source: sasmodels/example/sesansfit.py @ a06430c

core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since a06430c was a06430c, checked in by krzywon, 9 years ago

More small fixes to the SESANS scripting. Still not 100%.

  • Property mode set to 100644
File size: 3.1 KB
Line 
1from bumps.names import *
2from sasmodels import core, bumps_model, sesans
3
4HAS_CONVERTER = True
5try:
6    from sas.sascalc.data_util.nxsunit import Converter
7except ImportError:
8    HAS_CONVERTER = False
9
10
11def get_bumps_model(model_name):
12    kernel = core.load_model(model_name)
13    model = bumps_model.Model(kernel)
14    return model
15
16def sesans_fit(file, model, initial_vals={}, custom_params={}, param_range=[], acceptance_angle=None):
17    """
18
19    @param file: SESANS file location
20    @param model: Bumps model object or model name - can be model, model_1 * model_2, and/or model_1 + model_2
21    @param initial_vals: dictionary of {param_name : initial_value}
22    @param custom_params: dictionary of {custom_parameter_name : Parameter() object}
23    @param param_range: dictionary of {parameter_name : [minimum, maximum]}
24    @param constraints: dictionary of {parameter_name : constraint}
25    @return: FitProblem for Bumps usage
26    """
27    try:
28        from sas.sascalc.dataloader.loader import Loader
29        loader = Loader()
30        data = loader.load(file)
31        if data is None: raise IOError("Could not load file %r"%(file))
32        data.needs_all_q = acceptance_angle is not None
33        if HAS_CONVERTER == True:
34            default_unit = "A"
35            data_conv_q = Converter(data._xunit)
36            for x in data.x:
37                print x
38            data.x = data_conv_q(data.x, units=default_unit)
39            for x in data.x:
40                print x
41            data._xunit = default_unit
42
43    except:
44        # If no loadable data file, generate random data
45        SElength = np.linspace(0, 2400, 61) # [A]
46        data = np.ones_like(SElength)
47        err_data = np.ones_like(SElength)*0.03
48
49        class Sample:
50            zacceptance = 0.1 # [A^-1]
51            thickness = 0.2 # [cm]
52
53        class SESANSData1D:
54            #q_zmax = 0.23 # [A^-1]
55            lam = 0.2 # [nm]
56            x = SElength
57            y = data
58            dy = err_data
59            sample = Sample()
60            acceptance_angle = acceptance_angle
61            needs_all_q = acceptance_angle is not None
62        data = SESANSData1D()
63
64    if "radius" in initial_vals:
65        radius = initial_vals.get("radius")
66    else:
67        radius = 1000
68    data.Rmax = 3*radius # [A]
69
70    if isinstance(model, basestring):
71        model = get_bumps_model(model)
72
73    # Load custom parameters, initial values and parameter ranges
74    for k, v in custom_params.items():
75        setattr(model, k, v)
76        model._parameter_names.append(k)
77    for k, v in initial_vals.items():
78        param = model.parameters().get(k)
79        setattr(param, "value", v)
80    for k, v in param_range.items():
81        param = model.parameters().get(k)
82        if param is not None:
83            setattr(param.bounds, "limits", v)
84
85    if False: # for future implementation
86        M_sesans = bumps_model.Experiment(data=data, model=model)
87        M_sans = bumps_model.Experiment(data=sans_data, model=model)
88        problem = FitProblem([M_sesans, M_sans])
89    else:
90        M_sesans = bumps_model.Experiment(data=data, model=model)
91        problem = FitProblem(M_sesans)
92    return problem
Note: See TracBrowser for help on using the repository browser.