source: sasmodels/sasmodels/mixture.py @ 31ae428

core_shell_microgelscostrafo411magnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 31ae428 was 31ae428, checked in by lewis, 7 years ago

Fix labelling of mixture model parameters

  • Property mode set to 100644
File size: 11.9 KB
Line 
1"""
2Mixture model
3-------------
4
5The product model multiplies the structure factor by the form factor,
6modulated by the effective radius of the form.  The resulting model
7has a attributes of both the model description (with parameters, etc.)
8and the module evaluator (with call, release, etc.).
9
10To use it, first load form factor P and structure factor S, then create
11*ProductModel(P, S)*.
12"""
13from __future__ import print_function
14
15from copy import copy
16import numpy as np  # type: ignore
17
18from .modelinfo import Parameter, ParameterTable, ModelInfo
19from .kernel import KernelModel, Kernel
20from .details import make_details
21
22try:
23    from typing import List
24except ImportError:
25    pass
26
27def make_mixture_info(parts, operation='+'):
28    # type: (List[ModelInfo]) -> ModelInfo
29    """
30    Create info block for mixture model.
31    """
32    # Build new parameter list
33    combined_pars = []
34    demo = {}
35
36    model_num = 0
37    all_parts = copy(parts)
38    is_flat = False
39    while not is_flat:
40        is_flat = True
41        for part in all_parts:
42            if part.composition and part.composition[0] == 'mixture' and \
43                len(part.composition[1]) > 1:
44                all_parts += part.composition[1]
45                all_parts.remove(part)
46                is_flat = False
47
48    # When creating a mixture model that is a sum of product models (ie (1*2)+(3*4))
49    # the parameters for models 1 & 2 will be prefixed with A & B respectively,
50    # but so will the parameters for models 3 & 4. We need to rename models 3 & 4
51    # so that they are prefixed with C & D to avoid overlap of parameter names.
52    used_prefixes = []
53    for part in parts:
54        i = 0
55        if part.composition and part.composition[0] == 'mixture':
56            npars_list = [info.parameters.npars for info in part.composition[1]]
57            for npars in npars_list:
58                # List of params of one of the constituent models of part
59                submodel_pars = part.parameters.kernel_parameters[i:i+npars]
60                # Prefix of the constituent model
61                prefix = submodel_pars[0].name[0]
62                if prefix not in used_prefixes: # Haven't seen this prefix so far
63                    used_prefixes.append(prefix)
64                    i += npars
65                    continue
66                while prefix in used_prefixes:
67                    # This prefix has been already used, so change it to the
68                    # next letter that hasn't been used
69                    prefix = chr(ord(prefix) + 1)
70                used_prefixes.append(prefix)
71                prefix += "_"
72                # Update the parameters of this constituent model to use the
73                # new prefix
74                for par in submodel_pars:
75                    par.id = prefix + par.id[2:]
76                    par.name = prefix + par.name[2:]
77                    if par.length_control is not None:
78                        par.length_control = prefix + par.length_control[2:]
79                i += npars
80
81    for part in parts:
82        # Parameter prefix per model, A_, B_, ...
83        # Note that prefix must also be applied to id and length_control
84        # to support vector parameters
85        prefix = ''
86        if not part.composition:
87            # Model isn't a composition model, so it's parameters don't have a
88            # a prefix. Add the next available prefix
89            prefix = chr(ord('A')+len(used_prefixes))
90            used_prefixes.append(prefix)
91            prefix += '_'
92           
93        if operation == '+':
94            # If model is a sum model, each constituent model gets its own scale parameter
95            scale_prefix = prefix
96            if prefix == '' and part.operation == '*':
97                # `part` is a composition product model. Find the prefixes of
98                # it's parameters to form a new prefix for the scale, eg:
99                # a model with A*B*C will have ABC_scale
100                sub_prefixes = []
101                for param in part.parameters.kernel_parameters:
102                    # Prefix of constituent model
103                    sub_prefix = param.id.split('_')[0]
104                    if sub_prefix not in sub_prefixes:
105                        sub_prefixes.append(sub_prefix)
106                # Concatenate sub_prefixes to form prefix for the scale
107                scale_prefix = ''.join(sub_prefixes) + '_'
108            scale =  Parameter(scale_prefix + 'scale', default=1.0,
109                            description="model intensity for " + part.name)
110            combined_pars.append(scale)
111        for p in part.parameters.kernel_parameters:
112            p = copy(p)
113            p.name = prefix + p.name
114            p.id = prefix + p.id
115            if p.length_control is not None:
116                p.length_control = prefix + p.length_control
117            combined_pars.append(p)
118        demo.update((prefix+k, v) for k, v in part.demo.items()
119                    if k != "background")
120    #print("pars",combined_pars)
121    parameters = ParameterTable(combined_pars)
122    parameters.max_pd = sum(part.parameters.max_pd for part in parts)
123
124    model_info = ModelInfo()
125    model_info.id = operation.join(part.id for part in parts)
126    model_info.operation = operation
127    model_info.name = '(' + operation.join(part.name for part in parts) + ')'
128    model_info.filename = None
129    model_info.title = 'Mixture model with ' + model_info.name
130    model_info.description = model_info.title
131    model_info.docs = model_info.title
132    model_info.category = "custom"
133    model_info.parameters = parameters
134    #model_info.single = any(part['single'] for part in parts)
135    model_info.structure_factor = False
136    model_info.variant_info = None
137    #model_info.tests = []
138    #model_info.source = []
139    # Iq, Iqxy, form_volume, ER, VR and sesans
140    # Remember the component info blocks so we can build the model
141    model_info.composition = ('mixture', parts)
142    model_info.demo = demo
143    return model_info
144
145
146class MixtureModel(KernelModel):
147    def __init__(self, model_info, parts):
148        # type: (ModelInfo, List[KernelModel]) -> None
149        self.info = model_info
150        self.parts = parts
151
152    def make_kernel(self, q_vectors):
153        # type: (List[np.ndarray]) -> MixtureKernel
154        # Note: may be sending the q_vectors to the n times even though they
155        # are only needed once.  It would mess up modularity quite a bit to
156        # handle this optimally, especially since there are many cases where
157        # separate q vectors are needed (e.g., form in python and structure
158        # in opencl; or both in opencl, but one in single precision and the
159        # other in double precision).
160        kernels = [part.make_kernel(q_vectors) for part in self.parts]
161        return MixtureKernel(self.info, kernels)
162
163    def release(self):
164        # type: () -> None
165        """
166        Free resources associated with the model.
167        """
168        for part in self.parts:
169            part.release()
170
171
172class MixtureKernel(Kernel):
173    def __init__(self, model_info, kernels):
174        # type: (ModelInfo, List[Kernel]) -> None
175        self.dim = kernels[0].dim
176        self.info =  model_info
177        self.kernels = kernels
178        self.dtype = self.kernels[0].dtype
179        self.operation = model_info.operation
180        self.results = []  # type: List[np.ndarray]
181
182    def __call__(self, call_details, values, cutoff, magnetic):
183        # type: (CallDetails, np.ndarray, np.ndarry, float, bool) -> np.ndarray
184        scale, background = values[0:2]
185        total = 0.0
186        # remember the parts for plotting later
187        self.results = []  # type: List[np.ndarray]
188        parts = MixtureParts(self.info, self.kernels, call_details, values)
189        for kernel, kernel_details, kernel_values in parts:
190            #print("calling kernel", kernel.info.name)
191            result = kernel(kernel_details, kernel_values, cutoff, magnetic)
192            result = np.array(result).astype(kernel.dtype)
193            # print(kernel.info.name, result)
194            if self.operation == '+':
195                total += result
196            elif self.operation == '*':
197                if np.all(total) == 0.0:
198                    total = result
199                else:
200                    total *= result
201            self.results.append(result)
202
203        return scale*total + background
204
205    def release(self):
206        # type: () -> None
207        for k in self.kernels:
208            k.release()
209
210
211class MixtureParts(object):
212    def __init__(self, model_info, kernels, call_details, values):
213        # type: (ModelInfo, List[Kernel], CallDetails, np.ndarray) -> None
214        self.model_info = model_info
215        self.parts = model_info.composition[1]
216        self.kernels = kernels
217        self.call_details = call_details
218        self.values = values
219        self.spin_index = model_info.parameters.npars + 2
220        #call_details.show(values)
221
222    def __iter__(self):
223        # type: () -> PartIterable
224        self.part_num = 0
225        self.par_index = 2
226        self.mag_index = self.spin_index + 3
227        return self
228
229    def next(self):
230        # type: () -> Tuple[List[Callable], CallDetails, np.ndarray]
231        if self.part_num >= len(self.parts):
232            raise StopIteration()
233        info = self.parts[self.part_num]
234        kernel = self.kernels[self.part_num]
235        call_details = self._part_details(info, self.par_index)
236        values = self._part_values(info, self.par_index, self.mag_index)
237        values = values.astype(kernel.dtype)
238        #call_details.show(values)
239
240        self.part_num += 1
241        self.par_index += info.parameters.npars
242        if self.model_info.operation == '+':
243            self.par_index += 1 # Account for each constituent model's scale param
244        self.mag_index += 3 * len(info.parameters.magnetism_index)
245
246        return kernel, call_details, values
247
248    def _part_details(self, info, par_index):
249        # type: (ModelInfo, int) -> CallDetails
250        full = self.call_details
251        # par_index is index into values array of the current parameter,
252        # which includes the initial scale and background parameters.
253        # We want the index into the weight length/offset for each parameter.
254        # Exclude the initial scale and background, so subtract two. If we're
255        # building an addition model, each component has its own scale factor
256        # which we need to skip when constructing the details for the kernel, so
257        # add one, giving a net subtract one.
258        diff = 1 if self.model_info.operation == '+' else 2
259        index = slice(par_index - diff, par_index - diff + info.parameters.npars)
260        length = full.length[index]
261        offset = full.offset[index]
262        # The complete weight vector is being sent to each part so that
263        # offsets don't need to be adjusted.
264        part = make_details(info, length, offset, full.num_weights)
265        return part
266
267    def _part_values(self, info, par_index, mag_index):
268        # type: (ModelInfo, int, int) -> np.ndarray
269        # Set each constituent model's scale to 1 if this is a multiplication model
270        scale = self.values[par_index] if self.model_info.operation == '+' else 1.0
271        diff = 1 if self.model_info.operation == '+' else 0 # Skip scale if addition model
272        pars = self.values[par_index + diff:par_index + info.parameters.npars + diff]
273        nmagnetic = len(info.parameters.magnetism_index)
274        if nmagnetic:
275            spin_state = self.values[self.spin_index:self.spin_index + 3]
276            mag_index = self.values[mag_index:mag_index + 3 * nmagnetic]
277        else:
278            spin_state = []
279            mag_index = []
280        nvalues = self.model_info.parameters.nvalues
281        nweights = self.call_details.num_weights
282        weights = self.values[nvalues:nvalues+2*nweights]
283        zero = self.values.dtype.type(0.)
284        values = [[scale, zero], pars, spin_state, mag_index, weights]
285        # Pad value array to a 32 value boundary
286        spacer = (32 - sum(len(v) for v in values)%32)%32
287        values.append([zero]*spacer)
288        values = np.hstack(values).astype(self.kernels[0].dtype)
289        return values
Note: See TracBrowser for help on using the repository browser.