source: sasmodels/sasmodels/models/power_law.py @ d86f0fc

core_shell_microgelsmagnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since d86f0fc was 2d81cfe, checked in by Paul Kienzle <pkienzle@…>, 6 years ago

lint

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[48be770]1#power_law model
2#conversion of PowerLawAbsModel.py
[b15849c]3#converted by Steve King, Dec 2015
[48be770]4
5r"""
6This model calculates a simple power law with a flat background.
7
8Definition
9----------
10
11.. math::
12
[eb69cce]13    I(q) = \text{scale} \cdot q^{-\text{power}} + \text{background}
[48be770]14
[841753c]15Note the minus sign in front of the exponent. The exponent *power*
[525f3a9]16should therefore be entered as a **positive** number for fitting.
[48be770]17
[841753c]18Also note that unlike many other models, *scale* in this model
19is NOT explicitly related to a volume fraction. Be careful if
[48be770]20combining this model with other models.
21
22
[eb69cce]23References
24----------
[48be770]25
26None.
27"""
28
[2d81cfe]29import numpy as np
[2c74c11]30from numpy import inf, errstate
[48be770]31
[841753c]32name = "power_law"
[48be770]33title = "Simple power law with a flat background"
34
[841753c]35description = """
36    Evaluates the function
37    I(q) = scale * q^(-power) + background
38    NB: enter power as a positive number!
39    """
[48be770]40category = "shape-independent"
41
42#             ["name", "units", default, [lower, upper], "type", "description"],
[525f3a9]43parameters = [["power", "", 4.0, [-inf, inf], "", "Power law exponent"]]
[48be770]44
[525f3a9]45# NB: Scale and Background are implicit parameters on every model
[841753c]46def Iq(q, power):
47    # pylint: disable=missing-docstring
[2c74c11]48    with errstate(divide='ignore'):
[40a87fa]49        result = q**-power
50    return result
[eb69cce]51Iq.vectorized = True  # Iq accepts an array of q values
[48be770]52
[404ebbd]53def random():
54    power = np.random.uniform(1, 6)
55    pars = dict(
56        scale=0.1**power*10**np.random.uniform(-4, 2),
57        power=power,
58    )
59    return pars
60
[40a87fa]61demo = dict(scale=1.0, power=4.0, background=0.0)
[48be770]62
[8fe0b9b]63tests = [
[841753c]64    [{'scale': 1.0, 'power': 4.0, 'background' : 0.0},
65     [0.0106939, 0.469418], [7.64644e+07, 20.5949]],
66    ]
Note: See TracBrowser for help on using the repository browser.