Version 3 (modified by ajj, 8 years ago) (diff)

Introduction

In the new sasmodels package there are three ways of writing models:

  • As a pure python model : Example - broadpeak.py
  • As a python model with embedded C : Example - sphere.py
  • As a python wrapper with separate C code : Example - barbell.py

The documentation for the sasmodels package can be found at http://www.sasview.org/sasmodels/

CREATE NEW MODEL FILES.

In sasmodels/models/ copy the appropriate files using the examples above to mymodel.py and mymodel.c as required where “mymodel’ is the NEW name for the model to be moved. Please follow new naming rules:

  • No capitalization and thus no CamelCase. If necessary use underscore to separate (i.e. barbell not BarBell or broad_peak not BroadPeak)
  • Remove “model” from the name (i.e. barbell not BarBellModel)

EDIT NEW MODEL FILES

Cut and paste appropriate sections from old model into new sasmodels in appropriate places. Fill out all required sections. Most of the magic is done in the python file. Only the computation section (mainly the Iq method etc) will be either in the python file or the c file as described in the computation section below.

  • First lengthy docstring starts with an r (for raw) and three sets of quotes to start the doc string and ends with a second set of 3 quotes. This is where the FULL documentation for the model goes (to be picked up by sphinx). Paste the model documentation from the appropriate section of model_functions.rst (found at sasview/src/sas/models/media/model_functions.rst) here. For example, for the BarBellModel, search for BarBellModel in the rst file then copy everything after the *2.x.x. ModelNameModel. Edit the result as follows:
  • name = mymodel. Use the name of the file as described above in 1.
  • title is a short tool tip description of the model. This is a new value to be used for tooltip for example. Make-up something appropriate but short (one line).
  • description doc string. Cut and paste the self.description string from the SasView model. This gives a brief description of the equation and the parameters without the need to read the entire model documentation.
  • parameters. This is where the parameters get defined. The syntax should be obvious from the default. NAMES: VERY IMPORTANT. We are trying to make the model parameter more consistent between models. So solvent sld for example should have exactly the same name in every model. Current list of new parameters is:
    • radius = radius
    • sld = scattering length density of particle
    • solvent_sld = scattering length density of matrix
    • cor_length = correlation length
    • exp = exponent (example: porod_exp)
    • peak_pos = q_peak or q0 etc
    • lower and upper limits can be any number or -inf or inf
    • type can take 3 values at this time: “”, “volume”, or “orientation”
  • COMPUTATION
    • Python
      • def Iq (this section does not exist for c models. It is replaced by the list of c files to call)
      • def Iqxy. If this model does not have an oriented form just set it equal to the square root of the sum of Iq(x) squared and Iq(y) squared.
    • Python + C
      • in place of the above methods point to the C source files needed. There should be 3: two libraries and the model.c where model is the same name as given to the python model.py it should read source = ["lib/J1.c", "lib/gauss76.c", "my_model.c"]
      • the c file must contain the Iq and Iqxy methods. These and any other functions defined (e.g. form_volume, radius, etc) must be defined as doubles in the first lines of the file.
  • For certain models, such as those that can be multiplied by a structure factor, the ER attribute should be set to the Equivalent Radius (of a sphere).
  • demo is a dictionary containing the value of each parameter as given in the rst documentation. Make sure to enter the appropriate values from that documentation. This will then be used to generate the example curve in said documentation.
  • oldname is the name for this model used in SasView. Make sure to put the correct original name. This is required for the transition to allow compatibility.
  • oldpars is the name of the parameters as used in SasView. For each parameter give the name of the parameter as used in the original SasView code version of this model. Again this is required for the transition.
  • tests section (for unit test purposes) VERY IMPORTANT. Syntax: test is a list of lists. each list is one test and contains, in order,
    • a dictionary of parameter values. This can be {} using the default parameters, or filled with some parameters that will be different from the default ({‘radius’:10.0, ‘sld’:4}) unlisted parameters will be given the default values.
    • the q value or a tuple of qx, qy values
    • the Iq or Iqxy expected of the model for the parameters and q value given. There should be at least one test in the list. Please make sure that the answer value is correct (i.e. not a random number please)

TEST YOUR NEWLY CONVERTED MODEL

Test your new model by runing compare.py to verify that the converted model is giving the same results as it did in SasView? prior to conversion

FINISHING

Once compare passes properly and everything is done edit the models table to indicate that the conversion is complete