Changes in / [0d5dc05:7050455] in sasmodels


Ignore:
Files:
79 edited

Legend:

Unmodified
Added
Removed
  • doc/conf.py

    rc1e44e5 r30b60d2  
    3636              #'only_directives', 
    3737              #'matplotlib.sphinxext.mathmpl', 
    38               #'matplotlib.sphinxext.only_directives', 
     38              'matplotlib.sphinxext.only_directives', 
    3939              'matplotlib.sphinxext.plot_directive', 
    4040              'dollarmath', 
  • doc/genmodel.py

    rbe0942c rb866abf  
    77import matplotlib.pyplot as plt 
    88sys.path.insert(0, os.path.abspath('..')) 
    9 import sasmodels 
    109from sasmodels import generate, core 
    1110from sasmodels.direct_model import DirectModel, call_profile 
     
    128127    #print("figure saved in",path) 
    129128 
    130 def copy_if_newer(src, dst): 
    131     from os.path import dirname, exists, getmtime 
    132     import shutil 
    133     if not exists(dst): 
    134         path = dirname(dst) 
    135         if not exists(path): 
    136             os.makedirs(path) 
    137         shutil.copy2(src, dst) 
    138     elif getmtime(src) > getmtime(dst): 
    139         shutil.copy2(src, dst) 
    140  
    141 def link_sources(model_info): 
    142     from os.path import basename, dirname, realpath, join as joinpath 
    143  
    144     # List source files in reverse order of dependency. 
    145     model_file = basename(model_info.filename) 
    146     sources = list(reversed(model_info.source + [model_file])) 
    147  
    148     # Copy files to src dir under models directory.  Need to do this 
    149     # because sphinx can't link to an absolute path. 
    150     root = dirname(dirname(realpath(__file__))) 
    151     src = joinpath(root, "sasmodels", "models") 
    152     dst = joinpath(root, "doc", "model", "src") 
    153     for path in sources: 
    154         copy_if_newer(joinpath(src, path), joinpath(dst, path)) 
    155  
    156     # Link to local copy of the files 
    157     downloads = [":download:`%s <src/%s>`"%(path, path) for path in sources] 
    158  
    159     # Could do syntax highlighting on the model files by creating a rst file 
    160     # beside each source file named containing source file with 
    161     # 
    162     #    src/path.rst: 
    163     # 
    164     #    .. {{ path.replace('/','_') }}: 
    165     # 
    166     #    .. literalinclude:: {{ src/path }} 
    167     #        :language: {{ "python" if path.endswith('.py') else "c" }} 
    168     #        :linenos: 
    169     # 
    170     # and link to it using 
    171     # 
    172     #     colors = [":ref:`%s`"%(path.replace('/','_')) for path in sources] 
    173     # 
    174     # Probably need to dump all the rst files into an index.rst to build them. 
    175  
    176     # Link to github repo (either the tagged sasmodels version or master) 
    177     url = "https://github.com/SasView/sasmodels/blob/v%s"%sasmodels.__version__ 
    178     #url = "https://github.com/SasView/sasmodels/blob/master"%sasmodels.__version__ 
    179     links = ["`%s <%s/sasmodels/models/%s>`_"%(path, url, path) for path in sources] 
    180  
    181     sep = "\n$\\ \\star\\ $ "  # bullet 
    182     body = "\n**Source**\n" 
    183     #body += "\n" + sep.join(links) + "\n\n" 
    184     body += "\n" + sep.join(downloads) + "\n\n" 
    185     return body 
    186  
    187129def gen_docs(model_info): 
    188130    # type: (ModelInfo) -> None 
     
    208150    match = re.search(pattern, docstr.upper()) 
    209151 
    210     sources = link_sources(model_info) 
    211  
    212     insertion = captionstr + sources 
    213  
    214152    if match: 
    215153        docstr1 = docstr[:match.start()] 
    216154        docstr2 = docstr[match.start():] 
    217         docstr = docstr1 + insertion + docstr2 
     155        docstr = docstr1 + captionstr + docstr2 
    218156    else: 
    219157        print('------------------------------------------------------------------') 
    220158        print('References NOT FOUND for model: ', model_info.id) 
    221159        print('------------------------------------------------------------------') 
    222         docstr += insertion 
     160        docstr += captionstr 
    223161 
    224     open(sys.argv[2], 'w').write(docstr) 
     162    open(sys.argv[2],'w').write(docstr) 
    225163 
    226164def process_model(path): 
  • doc/guide/fitting_sq.rst

    r694c6d0 r694c6d0  
    8989   later. 
    9090 
    91  *radius_effective_mode*: 
     91* *radius_effective_mode*: 
    9292 
    9393    Defines how the effective radius (parameter **radius_effective**) should 
  • sasmodels/models/_spherepy.py

    rc1e44e5 ra34b811  
    3939John Wiley and Sons, New York, (1955) 
    4040 
     41Source 
     42------ 
     43 
     44`_spherepy.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/_spherepy.py>`_ 
     45`sphere.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/sphere.c>`_ 
     46 
    4147Authorship and Verification 
    4248---------------------------- 
     
    4551* **Last Modified by:** 
    4652* **Last Reviewed by:** S King and P Parker **Date:** 2013/09/09 and 2014/01/06 
     53* **Source added by :** Steve King **Date:** March 25, 2019 
    4754""" 
    4855 
  • sasmodels/models/adsorbed_layer.py

    rc1e44e5 r0507e09  
    4949   Layers*, *Macromol. Symp.*, 190 (2002) 33-42. 
    5050 
     51Source 
     52------ 
     53 
     54`adsorbed_layer.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/adsorbed_layer.py>`_ 
     55 
    5156Authorship and Verification 
    5257---------------------------- 
     
    5560* **Last Modified by:** Paul Kienzle **Date:** April 14, 2016 
    5661* **Last Reviewed by:** Steve King **Date:** March 18, 2016 
     62* **Source added by :** Steve King **Date:** March 25, 2019 
    5763""" 
    5864 
  • sasmodels/models/barbell.py

    rc1e44e5 ra34b811  
    8181.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    8282 
     83Source 
     84------ 
     85 
     86`barbell.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/barbell.py>`_ 
     87 
     88`barbell.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/barbell.c>`_ 
     89 
    8390Authorship and Verification 
    8491---------------------------- 
     
    8794* **Last Modified by:** Paul Butler **Date:** March 20, 2016 
    8895* **Last Reviewed by:** Richard Heenan **Date:** January 4, 2017 
     96* **Source added by :** Steve King **Date:** March 25, 2019 
    8997""" 
    9098 
  • sasmodels/models/bcc_paracrystal.py

    rc1e44e5 r0507e09  
    100100   (Corrections to FCC and BCC lattice structure calculation) 
    101101 
     102Source 
     103------ 
     104 
     105`bcc_paracrystal.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/bcc_paracrystal.py>`_ 
     106 
     107`bcc_paracrystal.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/bcc_paracrystal.c>`_ 
     108 
    102109Authorship and Verification 
    103110--------------------------- 
     
    106113* **Last Modified by:** Paul Butler **Date:** September 29, 2016 
    107114* **Last Reviewed by:** Richard Heenan **Date:** March 21, 2016 
     115* **Source added by :** Steve King **Date:** March 25, 2019 
    108116""" 
    109117 
  • sasmodels/models/be_polyelectrolyte.py

    rc1e44e5 r0507e09  
    9191.. [#] E Raphael, J F Joanny, *Europhysics Letters*, 11 (1990) 179 
    9292 
     93Source 
     94------ 
     95 
     96`be_polyelectrolyte.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/be_polyelectrolyte.py>`_ 
     97 
    9398Authorship and Verification 
    9499---------------------------- 
     
    97102* **Last Modified by:** Paul Butler **Date:** September 25, 2018 
    98103* **Last Reviewed by:** Paul Butler **Date:** September 25, 2018 
     104* **Source added by :** Steve King **Date:** March 25, 2019 
    99105""" 
    100106 
  • sasmodels/models/binary_hard_sphere.py

    rc1e44e5 r0507e09  
    6565.. [#] S R Kline, *J Appl. Cryst.*, 39 (2006) 895 
    6666 
     67Source 
     68------ 
     69 
     70`binary_hard_sphere.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/binary_hard_sphere.py>`_ 
     71 
     72`binary_hard_sphere.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/binary_hard_sphere.c>`_ 
     73 
    6774Authorship and Verification 
    6875---------------------------- 
     
    7178* **Last Modified by:** Paul Butler **Date:** March 20, 2016 
    7279* **Last Reviewed by:** Paul Butler **Date:** March 20, 2016 
     80* **Source added by :** Steve King **Date:** March 25, 2019 
    7381""" 
    7482 
  • sasmodels/models/broad_peak.py

    rc1e44e5 r0507e09  
    3333None. 
    3434 
     35Source 
     36------ 
     37 
     38`broad_peak.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/broad_peak.py>`_ 
     39 
    3540Authorship and Verification 
    3641---------------------------- 
     
    3944* **Last Modified by:** Paul kienle **Date:** July 24, 2016 
    4045* **Last Reviewed by:** Richard Heenan **Date:** March 21, 2016 
     46* **Source added by :** Steve King **Date:** March 25, 2019 
    4147""" 
    4248 
  • sasmodels/models/capped_cylinder.py

    rc1e44e5 ra34b811  
    8484.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    8585 
     86Source 
     87------ 
     88 
     89`capped_cylinder.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/capped_cylinder.py>`_ 
     90 
     91`capped_cylinder.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/capped_cylinder.c>`_ 
     92 
    8693Authorship and Verification 
    8794---------------------------- 
     
    9097* **Last Modified by:** Paul Butler **Date:** September 30, 2016 
    9198* **Last Reviewed by:** Richard Heenan **Date:** January 4, 2017 
     99* **Source added by :** Steve King **Date:** March 25, 2019 
    92100""" 
    93101 
  • sasmodels/models/core_multi_shell.py

    rc1e44e5 ra34b811  
    3939   Neutron Scattering*, Plenum Press, New York, 1987. 
    4040 
     41Source 
     42------ 
     43 
     44`core_multi_shell.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_multi_shell.py>`_ 
     45 
     46`core_multi_shell.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_multi_shell.c>`_ 
     47 
    4148Authorship and Verification 
    4249---------------------------- 
     
    4552* **Last Modified by:** Paul Kienzle **Date:** September 12, 2016 
    4653* **Last Reviewed by:** Paul Kienzle **Date:** September 12, 2016 
     54* **Source added by :** Steve King **Date:** March 25, 2019 
    4755""" 
    4856from __future__ import division 
  • sasmodels/models/core_shell_bicelle.py

    rc1e44e5 ra34b811  
    9292.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    9393 
     94Source 
     95------ 
     96 
     97`core_shell_bicelle.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_bicelle.py>`_ 
     98 
     99`core_shell_bicelle.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_bicelle.c>`_ 
     100 
    94101Authorship and Verification 
    95102---------------------------- 
     
    98105* **Last Modified by:** Paul Butler **Date:** September 30, 2016 
    99106* **Last Reviewed by:** Richard Heenan **Date:** January 4, 2017 
     107* **Source added by :** Steve King **Date:** March 25, 2019 
    100108""" 
    101109 
  • sasmodels/models/core_shell_bicelle_elliptical.py

    rc1e44e5 ra34b811  
    101101.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    102102 
     103Source 
     104------ 
     105 
     106`core_shell_bicelle_elliptical.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_bicelle_elliptical.py>`_ 
     107 
     108`core_shell_bicelle_elliptical.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_bicelle_elliptical.c>`_ 
     109 
    103110Authorship and Verification 
    104111---------------------------- 
     
    107114* **Last Modified by:**  Richard Heenan **Date:** December 14, 2016 
    108115* **Last Reviewed by:**  Paul Kienzle **Date:** Feb 28, 2018 
     116* **Source added by :**  Steve King **Date:** March 25, 2019 
    109117""" 
    110118 
  • sasmodels/models/core_shell_bicelle_elliptical_belt_rough.py

    rc1e44e5 ra34b811  
    113113.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    114114 
     115Source 
     116------ 
     117 
     118`core_shell_bicelle_elliptical_belt_rough.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_bicelle_elliptical_belt_rough.py>`_ 
     119 
     120`core_shell_bicelle_elliptical_belt_rough.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_bicelle_elliptical_belt_rough.c>`_ 
     121 
    115122Authorship and Verification 
    116123---------------------------- 
     
    119126* **Last Modified by:**  Richard Heenan new 2d orientation **Date:** October 5, 2017 
    120127* **Last Reviewed by:**  Richard Heenan 2d calc seems agree with 1d **Date:** Nov 2, 2017 
     128* **Source added by :**  Steve King **Date:** March 25, 2019 
    121129""" 
    122130 
  • sasmodels/models/core_shell_cylinder.py

    rc1e44e5 rdb1d9d5  
    7272.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    7373 
     74Source 
     75------ 
     76 
     77`core_shell_cylinder.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_cylinder.py>`_ 
     78 
     79`core_shell_cylinder.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_cylinder.c>`_ 
     80 
    7481Authorship and Verification 
    7582---------------------------- 
     
    7885* **Last Modified by:** Paul Kienzle **Date:** Aug 8, 2016 
    7986* **Last Reviewed by:** Richard Heenan **Date:** March 18, 2016 
     87* **Source added by :** Steve King **Date:** March 25, 2019 
    8088""" 
    8189 
  • sasmodels/models/core_shell_ellipsoid.py

    rc1e44e5 rdb1d9d5  
    9797.. [#] Berr, S. *J. Phys. Chem.*, 1987, 91, 4760 
    9898 
     99Source 
     100------ 
     101 
     102`core_shell_ellipsoid.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_ellipsoid.py>`_ 
     103 
     104`core_shell_ellipsoid.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_ellipsoid.c>`_ 
     105 
    99106Authorship and Verification 
    100107---------------------------- 
     
    103110* **Last Modified by:** Richard Heenan (reparametrised model) **Date:** 2015 
    104111* **Last Reviewed by:** Steve King **Date:** March 27, 2019 
     112* **Source added by :** Steve King **Date:** March 25, 2019 
    105113""" 
    106114 
  • sasmodels/models/core_shell_parallelepiped.py

    rc1e44e5 ra34b811  
    175175.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    176176 
     177Source 
     178------ 
     179 
     180`core_shell_parallelepiped.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_parallelepiped.py>`_ 
     181 
     182`core_shell_parallelepiped.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_parallelepiped.c>`_ 
     183 
    177184Authorship and Verification 
    178185---------------------------- 
     
    183190* **Last Reviewed by:** Paul Butler **Date:** May 24, 2018 - documentation 
    184191  updated 
     192* **Source added by :** Steve King **Date:** March 25, 2019 
    185193""" 
    186194 
  • sasmodels/models/core_shell_sphere.py

    rc1e44e5 ra34b811  
    5050.. [#] A Guinier and G Fournet, *Small-Angle Scattering of X-Rays*, John Wiley and Sons, New York, (1955) 
    5151 
     52Source 
     53------ 
     54 
     55`core_shell_sphere.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_sphere.py>`_ 
     56 
     57`core_shell_sphere.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/core_shell_sphere.c>`_ 
     58 
    5259Authorship and Verification 
    5360---------------------------- 
     
    5663* **Last Modified by:** 
    5764* **Last Reviewed by:** 
     65* **Source added by :** Steve King **Date:** March 25, 2019 
    5866""" 
    5967 
  • sasmodels/models/correlation_length.py

    rc1e44e5 r0507e09  
    3232.. [#] B Hammouda, D L Ho and S R Kline, Insight into Clustering in Poly(ethylene oxide) Solutions, Macromolecules, 37 (2004) 6932-6937 
    3333 
     34Source 
     35------ 
     36 
     37`correlation_length.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/correlation_length.py>`_ 
     38 
    3439Authorship and Verification 
    3540---------------------------- 
    3641 
    37 * **Author:** 
    38 * **Last Modified by:** 
    39 * **Last Reviewed by:** 
     42* **Author:**  
     43* **Last Modified by:**  
     44* **Last Reviewed by:**  
     45* **Source added by :** Steve King **Date:** March 25, 2019 
    4046""" 
    4147 
  • sasmodels/models/cylinder.py

    rc1e44e5 ra34b811  
    100100.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    101101 
     102Source 
     103------ 
     104 
     105`cylinder.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/cylinder.py>`_ 
     106 
     107`cylinder.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/cylinder.c>`_ 
     108 
    102109Authorship and Verification 
    103110---------------------------- 
     
    106113* **Last Modified by:** 
    107114* **Last Reviewed by:** 
     115* **Source added by :** Steve King **Date:** March 25, 2019 
    108116""" 
    109117 
  • sasmodels/models/ellipsoid.py

    rc1e44e5 ra34b811  
    109109.. [#] A. Isihara. *J. Chem. Phys.*, 18 (1950) 1446-1449 
    110110 
     111Source 
     112------ 
     113 
     114`ellipsoid.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/ellipsoid.py>`_ 
     115 
     116`ellipsoid.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/ellipsoid.c>`_ 
     117 
    111118Authorship and Verification 
    112119---------------------------- 
     
    115122* **Converted to sasmodels by:** Helen Park **Date:** July 9, 2014 
    116123* **Last Modified by:** Paul Kienzle **Date:** March 22, 2017 
     124* **Source added by :** Steve King **Date:** March 25, 2019 
    117125""" 
    118126from __future__ import division 
  • sasmodels/models/elliptical_cylinder.py

    rc1e44e5 ra34b811  
    8989.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    9090 
     91Source 
     92------ 
     93 
     94`elliptical_cylinder.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/elliptical_cylinder.py>`_ 
     95 
     96`elliptical_cylinder.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/elliptical_cylinder.c>`_ 
     97 
    9198Authorship and Verification 
    9299---------------------------- 
     
    95102* **Last Modified by:** 
    96103* **Last Reviewed by:**  Richard Heenan - corrected equation in docs **Date:** December 21, 2016 
     104* **Source added by :** Steve King **Date:** March 25, 2019 
    97105""" 
    98106 
  • sasmodels/models/fcc_paracrystal.py

    rc1e44e5 r0507e09  
    9999   (Corrections to FCC and BCC lattice structure calculation) 
    100100 
     101Source 
     102------ 
     103 
     104`fcc_paracrystal.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/fcc_paracrystal.py>`_ 
     105 
     106`fcc_paracrystal.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/fcc_paracrystal.c>`_ 
     107 
    101108Authorship and Verification 
    102109--------------------------- 
     
    105112* **Last Modified by:** Paul Butler **Date:** September 29, 2016 
    106113* **Last Reviewed by:** Richard Heenan **Date:** March 21, 2016 
     114* **Source added by :** Steve King **Date:** March 25, 2019 
    107115""" 
    108116 
  • sasmodels/models/flexible_cylinder.py

    rc1e44e5 rdb1d9d5  
    9595.. [#] W R Chen, P D Butler and L J Magid, *Incorporating Intermicellar Interactions in the Fitting of SANS Data from Cationic Wormlike Micelles.* Langmuir, 22(15) 2006 6539-6548 
    9696 
     97Source 
     98------ 
     99 
     100`flexible_cylinder.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/flexible_cylinder.py>`_ 
     101 
     102`flexible_cylinder.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/flexible_cylinder.c>`_ 
     103 
     104`wrc_cyl.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/lib/wrc_cyl.c>`_ 
     105 
    97106Authorship and Verification 
    98107---------------------------- 
     
    101110* **Last Modified by:** 
    102111* **Last Reviewed by:** Steve King **Date:** March 26, 2019 
     112* **Source added by :** Steve King **Date:** March 25, 2019 
    103113""" 
    104114 
  • sasmodels/models/flexible_cylinder_elliptical.py

    rc1e44e5 rdb1d9d5  
    8383.. [#] W R Chen, P D Butler and L J Magid, *Incorporating Intermicellar Interactions in the Fitting of SANS Data from Cationic Wormlike Micelles.* Langmuir, 22(15) 2006 6539-6548 
    8484 
     85Source 
     86------ 
     87 
     88`flexible_cylinder_elliptical.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/flexible_cylinder_elliptical.py>`_ 
     89 
     90`flexible_cylinder_elliptical.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/flexible_cylinder_elliptical.c>`_ 
     91 
     92`wrc_cyl.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/lib/wrc_cyl.c>`_ 
     93 
    8594Authorship and Verification 
    8695---------------------------- 
     
    8998* **Last Modified by:** Richard Heenan **Date:** December, 2016 
    9099* **Last Reviewed by:** Steve King **Date:** March 26, 2019 
     100* **Source added by :** Steve King **Date:** March 25, 2019 
    91101""" 
    92102 
  • sasmodels/models/fractal.py

    rc1e44e5 r0507e09  
    4646.. [#] J Teixeira, *J. Appl. Cryst.*, 21 (1988) 781-785 
    4747 
     48Source 
     49------ 
     50 
     51`fractal.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/fractal.py>`_ 
     52 
     53`fractal.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/fractal.c>`_ 
     54 
    4855Authorship and Verification 
    4956---------------------------- 
     
    5360* **Last Modified by:** Paul Butler **Date:** March 12, 2017 
    5461* **Last Reviewed by:** Paul Butler **Date:** March 12, 2017 
     62* **Source added by :** Steve King **Date:** March 25, 2019 
    5563""" 
    5664from __future__ import division 
  • sasmodels/models/fractal_core_shell.py

    rc1e44e5 r0507e09  
    5151.. [#Kline]  S R Kline, *J Appl. Cryst.*, 39 (2006) 895 
    5252 
     53Source 
     54------ 
     55 
     56`fractal_core_shell.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/fractal_core_shell.py>`_ 
     57 
     58`fractal_core_shell.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/fractal_core_shell.c>`_ 
     59 
    5360Authorship and Verification 
    5461---------------------------- 
     
    5764* **Last Modified by:** Paul Butler and Paul Kienzle **Date:** November 27, 2016 
    5865* **Last Reviewed by:** Paul Butler and Paul Kienzle **Date:** November 27, 2016 
     66* **Source added by :** Steve King **Date:** March 25, 2019 
    5967""" 
    6068 
  • sasmodels/models/fuzzy_sphere.py

    rc1e44e5 ra34b811  
    5353.. [#] M Stieger, J. S Pedersen, P Lindner, W Richtering, *Langmuir*, 20 (2004) 7283-7292 
    5454 
     55Source 
     56------ 
     57 
     58`fuzzy_sphere.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/fuzzy_sphere.py>`_ 
     59 
     60`fuzzy_sphere.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/fuzzy_sphere.c>`_ 
     61 
    5562Authorship and Verification 
    5663---------------------------- 
     
    5966* **Last Modified by:** 
    6067* **Last Reviewed by:** 
     68* **Source added by :** Steve King **Date:** March 25, 2019 
    6169""" 
    6270 
  • sasmodels/models/gauss_lorentz_gel.py

    rc1e44e5 r0507e09  
    3434.. [#] G Evmenenko, E Theunissen, K Mortensen, H Reynaers, *Polymer*, 42 (2001) 2907-2913 
    3535 
     36Source 
     37------ 
     38 
     39`gauss_lorentz_gel.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/gauss_lorentz_gel.py>`_ 
     40 
    3641Authorship and Verification 
    3742---------------------------- 
    3843 
    39 * **Author:** 
    40 * **Last Modified by:** 
    41 * **Last Reviewed by:** 
     44* **Author:**  
     45* **Last Modified by:**  
     46* **Last Reviewed by:**  
     47* **Source added by :** Steve King **Date:** March 25, 2019 
    4248""" 
    4349 
  • sasmodels/models/gaussian_peak.py

    rc1e44e5 r0507e09  
    2727None. 
    2828 
     29Source 
     30------ 
     31 
     32`gaussian_peak.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/gaussian_peak.py>`_ 
     33 
    2934Authorship and Verification 
    3035---------------------------- 
    3136 
    32 * **Author:** 
    33 * **Last Modified by:** 
    34 * **Last Reviewed by:** 
     37* **Author:**  
     38* **Last Modified by:**  
     39* **Last Reviewed by:**  
     40* **Source added by :** Steve King **Date:** March 25, 2019 
    3541""" 
    3642 
  • sasmodels/models/gel_fit.py

    rc1e44e5 r0507e09  
    4141.. [#] Simon Mallam, Ferenc Horkay, Anne-Marie Hecht, Adrian R Rennie, Erik Geissler, *Macromolecules* 1991, 24, 543-548 
    4242 
     43Source 
     44------ 
     45 
     46`gel_fit.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/gel_fit.py>`_ 
     47 
     48`gel_fit.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/gel_fit.c>`_ 
     49 
    4350Authorship and Verification 
    4451---------------------------- 
    4552 
    46 * **Author:** 
    47 * **Last Modified by:** 
    48 * **Last Reviewed by:** 
     53* **Author:**  
     54* **Last Modified by:**  
     55* **Last Reviewed by:**  
     56* **Source added by :** Steve King **Date:** March 25, 2019 
    4957""" 
    5058 
  • sasmodels/models/guinier.py

    rc1e44e5 r0507e09  
    4848.. [#] A Guinier and G Fournet, *Small-Angle Scattering of X-Rays*, John Wiley & Sons, New York (1955) 
    4949 
     50Source 
     51------ 
     52 
     53`guinier.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/guinier.py>`_ 
     54 
    5055Authorship and Verification 
    5156---------------------------- 
    5257 
    53 * **Author:** 
    54 * **Last Modified by:** 
    55 * **Last Reviewed by:** 
     58* **Author:**  
     59* **Last Modified by:**  
     60* **Last Reviewed by:**  
     61* **Source added by :** Steve King **Date:** March 25, 2019 
    5662""" 
    5763 
  • sasmodels/models/guinier_porod.py

    rc1e44e5 rdb1d9d5  
    6363.. [#] B Hammouda, *Analysis of the Beaucage model, J. Appl. Cryst.*, (2010), 43, 1474-1478 
    6464 
     65Source 
     66------ 
     67 
     68`guinier_porod.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/guinier_porod.py>`_ 
     69 
    6570Authorship and Verification 
    6671---------------------------- 
    6772 
    68 * **Author:** 
    69 * **Last Modified by:** 
    70 * **Last Reviewed by:** 
     73* **Author:**  
     74* **Last Modified by:**  
     75* **Last Reviewed by:**  
     76* **Source added by :** Steve King **Date:** March 25, 2019 
    7177""" 
    7278 
  • sasmodels/models/hardsphere.py

    r4d00de6 r4d00de6  
    5454.. [#] J K Percus, J Yevick, *J. Phys. Rev.*, 110, (1958) 1 
    5555 
     56Source 
     57------ 
     58 
     59`hardsphere.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/hardsphere.py>`_ 
     60 
    5661Authorship and Verification 
    5762---------------------------- 
     
    6065* **Last Modified by:** 
    6166* **Last Reviewed by:** 
     67* **Source added by :** Steve King **Date:** March 25, 2019 
    6268""" 
    6369 
  • sasmodels/models/hayter_msa.py

    r4d00de6 r4d00de6  
    6363.. [#] C G Malmberg and A A Maryott, *J. Res. Nat. Bureau Standards*, 56 (1956) 2641 
    6464 
     65Source 
     66------ 
     67 
     68`hayter_msa.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/hayter_msa.py>`_ 
     69 
     70`hayter_msa.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/hayter_msa.c>`_ 
     71 
    6572Authorship and Verification 
    6673---------------------------- 
     
    6976* **Last Modified by:** 
    7077* **Last Reviewed by:** Steve King **Date:** March 28, 2019 
     78* **Source added by :** Steve King **Date:** March 25, 2019 
    7179""" 
    7280 
  • sasmodels/models/hollow_cylinder.py

    rc1e44e5 ra34b811  
    6262.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    6363 
     64Source 
     65------ 
     66 
     67`hollow_cylinder.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/hollow_cylinder.py>`_ 
     68 
     69`hollow_cylinder.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/hollow_cylinder.c>`_ 
     70 
    6471Authorship and Verification 
    6572---------------------------- 
     
    6976   (corrected VR calculation) 
    7077* **Last Reviewed by:** Paul Butler **Date:** September 06, 2018 
     78* **Source added by :** Steve King **Date:** March 25, 2019 
    7179""" 
    7280from __future__ import division 
  • sasmodels/models/hollow_rectangular_prism.py

    rc1e44e5 ra34b811  
    100100.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    101101 
     102Source 
     103------ 
     104 
     105`hollow_rectangular_prism.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/hollow_rectangular_prism.py>`_ 
     106 
     107`hollow_rectangular_prism.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/hollow_rectangular_prism.c>`_ 
     108 
    102109Authorship and Verification 
    103110---------------------------- 
     
    106113* **Last Modified by:** Paul Kienzle **Date:** December 14, 2017 
    107114* **Last Reviewed by:** Paul Butler **Date:** September 06, 2018 
     115* **Source added by :** Steve King **Date:** March 25, 2019 
    108116""" 
    109117 
  • sasmodels/models/hollow_rectangular_prism_thin_walls.py

    rc1e44e5 ra34b811  
    7474.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    7575 
     76Source 
     77------ 
     78 
     79`hollow_rectangular_prism_thin_walls.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/hollow_rectangular_prism_thin_walls.py>`_ 
     80 
     81`hollow_rectangular_prism_thin_walls.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/hollow_rectangular_prism_thin_walls.c>`_ 
     82 
    7683Authorship and Verification 
    7784---------------------------- 
     
    8087* **Last Modified by:** Paul Kienzle **Date:** October 15, 2016 
    8188* **Last Reviewed by:** Paul Butler **Date:** September 07, 2018 
     89* **Source added by :** Steve King **Date:** March 25, 2019 
    8290""" 
    8391 
  • sasmodels/models/lamellar.py

    rc1e44e5 r0507e09  
    4343.. [#] J Berghausen, J Zipfel, P Lindner, W Richtering, *J. Phys. Chem. B*, 105, (2001) 11081-11088 
    4444 
     45Source 
     46------ 
     47 
     48`lamellar.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/lamellar.py>`_ 
     49 
    4550Authorship and Verification 
    4651---------------------------- 
    4752 
    48 * **Author:** 
    49 * **Last Modified by:** 
    50 * **Last Reviewed by:** 
     53* **Author:**  
     54* **Last Modified by:**  
     55* **Last Reviewed by:**  
     56* **Source added by :** Steve King **Date:** March 25, 2019 
    5157""" 
    5258 
  • sasmodels/models/lamellar_hg.py

    rc1e44e5 r0507e09  
    4545.. [#] J Berghausen, J Zipfel, P Lindner, W Richtering, *J. Phys. Chem. B*, 105, (2001) 11081-11088 
    4646 
     47Source 
     48------ 
     49 
     50`lamellar_hg.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/lamellar_hg.py>`_ 
     51 
    4752Authorship and Verification 
    4853---------------------------- 
    4954 
    50 * **Author:** 
    51 * **Last Modified by:** 
     55* **Author:**  
     56* **Last Modified by:**  
    5257* **Last Reviewed by:** S King and P Butler **Date** April 17, 2014 
     58* **Source added by :** Steve King **Date:** March 25, 2019 
    5359""" 
    5460 
  • sasmodels/models/lamellar_hg_stack_caille.py

    rc1e44e5 r0507e09  
    7272.. [#] J Berghausen, J Zipfel, P Lindner, W Richtering, *J. Phys. Chem. B*, 105, (2001) 11081-11088 
    7373 
     74Source 
     75------ 
     76 
     77`lamellar_hg_stack_caille.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/lamellar_hg_stack_caille.py>`_ 
     78 
     79`lamellar_hg_stack_caille.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/lamellar_hg_stack_caille.c>`_ 
     80 
    7481Authorship and Verification 
    7582---------------------------- 
    7683 
    77 * **Author:** 
    78 * **Last Modified by:** 
    79 * **Last Reviewed by:** 
     84* **Author:**  
     85* **Last Modified by:**  
     86* **Last Reviewed by:**  
     87* **Source added by :** Steve King **Date:** March 25, 2019 
    8088""" 
    8189 
  • sasmodels/models/lamellar_stack_caille.py

    rc1e44e5 r0507e09  
    6868.. [#] J Berghausen, J Zipfel, P Lindner, W Richtering, *J. Phys. Chem. B*, 105, (2001) 11081-11088 
    6969 
     70Source 
     71------ 
     72 
     73`lamellar_stack_caille.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/lamellar_stack_caille.py>`_ 
     74 
     75`lamellar_stack_caille.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/lamellar_stack_caille.c>`_ 
     76 
    7077Authorship and Verification 
    7178---------------------------- 
    7279 
    73 * **Author:** 
    74 * **Last Modified by:** 
    75 * **Last Reviewed by:** 
     80* **Author:**  
     81* **Last Modified by:**  
     82* **Last Reviewed by:**  
     83* **Source added by :** Steve King **Date:** March 25, 2019 
    7684""" 
    7785 
  • sasmodels/models/lamellar_stack_paracrystal.py

    rc1e44e5 r0507e09  
    9090.. [#] M Bergstrom, J S Pedersen, P Schurtenberger, S U Egelhaaf, *J. Phys. Chem. B*, 103 (1999) 9888-9897 
    9191 
     92Source 
     93------ 
     94 
     95`lamellar_stack_paracrystal.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/lamellar_stack_paracrystal.py>`_ 
     96 
     97`lamellar_stack_paracrystal.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/lamellar_stack_paracrystal.c>`_ 
     98 
    9299Authorship and Verification 
    93100---------------------------- 
    94101 
    95 * **Author:** 
    96 * **Last Modified by:** 
    97 * **Last Reviewed by:** 
     102* **Author:**  
     103* **Last Modified by:**  
     104* **Last Reviewed by:**  
     105* **Source added by :** Steve King **Date:** March 25, 2019 
    98106""" 
    99107import numpy as np 
  • sasmodels/models/line.py

    rc1e44e5 r0507e09  
    2323None. 
    2424 
     25Source 
     26------ 
     27 
     28`line.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/line.py>`_ 
     29 
    2530Authorship and Verification 
    2631---------------------------- 
    2732 
    28 * **Author:** 
    29 * **Last Modified by:** 
    30 * **Last Reviewed by:** 
    31 """ 
     33* **Author:**  
     34* **Last Modified by:**  
     35* **Last Reviewed by:**  
     36* **Source added by :** Steve King **Date:** March 25, 2019""" 
    3237 
    3338import numpy as np 
  • sasmodels/models/linear_pearls.py

    rc1e44e5 r0507e09  
    3131.. [#] A V Dobrynin, M Rubinstein and S P Obukhov, *Macromol.*, 29 (1996) 2974-2979 
    3232 
     33Source 
     34------ 
     35 
     36`linear_pearls.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/linear_pearls.py>`_ 
     37 
     38`linear_pearls.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/linear_pearls.c>`_ 
     39 
    3340Authorship and Verification 
    3441---------------------------- 
    3542 
    36 * **Author:** 
    37 * **Last Modified by:** 
    38 * **Last Reviewed by:** 
    39 """ 
     43* **Author:**  
     44* **Last Modified by:**  
     45* **Last Reviewed by:**  
     46* **Source added by :** Steve King **Date:** March 25, 2019""" 
    4047 
    4148import numpy as np 
  • sasmodels/models/lorentz.py

    rc1e44e5 r0507e09  
    2222.. [#] L.S. Qrnstein and F. Zernike, *Proc. Acad. Sci. Amsterdam* 17, 793 (1914), and *Z. Phys.* 19, 134 (1918), and 27, 761 {1926); referred to as QZ. 
    2323 
     24Source 
     25------ 
     26 
     27`lorentz.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/lorentz.py>`_ 
     28 
    2429Authorship and Verification 
    2530---------------------------- 
    2631 
    27 * **Author:** 
    28 * **Last Modified by:** 
    29 * **Last Reviewed by:** 
    30 """ 
     32* **Author:**  
     33* **Last Modified by:**  
     34* **Last Reviewed by:**  
     35* **Source added by :** Steve King **Date:** March 25, 2019""" 
    3136 
    3237import numpy as np 
  • sasmodels/models/mass_fractal.py

    rc1e44e5 r0507e09  
    5151.. [#] D Mildner and P Hall, *J. Phys. D: Appl. Phys.*, 19 (1986) 1535-1545 Equation(9) 
    5252 
     53Source 
     54------ 
     55 
     56`mass_fractal.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/mass_fractal.py>`_ 
     57 
     58`mass_fractal.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/mass_fractal.c>`_ 
     59 
    5360Authorship and Verification 
    5461---------------------------- 
    5562 
    56 * **Author:** 
    57 * **Last Modified by:** 
    58 * **Last Reviewed by:** 
    59 """ 
     63* **Author:**  
     64* **Last Modified by:**  
     65* **Last Reviewed by:**  
     66* **Source added by :** Steve King **Date:** March 25, 2019""" 
    6067 
    6168import numpy as np 
  • sasmodels/models/mass_surface_fractal.py

    rc1e44e5 r0507e09  
    5555   35 (1987) 2361-2364 Equation(2) 
    5656 
     57Source 
     58------ 
     59 
     60`mass_surface_fractal.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/mass_surface_fractal.py>`_ 
     61 
     62`mass_surface_fractal.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/mass_surface_fractal.c>`_ 
     63 
    5764Authorship and Verification 
    5865---------------------------- 
    5966 
    6067* **Author:** Piotr Rozyczko **Date:** Jan 20, 2016 
    61 * **Last Modified by:** 
     68* **Last Modified by:**  
    6269* **Last Reviewed by:** Richard Heenan **Date:** May 30, 2018 
     70* **Source added by :** Steve King **Date:** March 25, 2019 
    6371""" 
    6472 
  • sasmodels/models/mono_gauss_coil.py

    rc1e44e5 ra34b811  
    4949.. [#] http://www.ncnr.nist.gov/staff/hammouda/distance_learning/chapter_28.pdf 
    5050 
     51Source 
     52------ 
     53 
     54`mono_gauss_coil.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/mono_gauss_coil.py>`_ 
     55 
     56`mono_gauss_coil.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/mono_gauss_coil.c>`_ 
     57 
    5158Authorship and Verification 
    5259---------------------------- 
     
    5562* **Last Modified by:** 
    5663* **Last Reviewed by:** 
    57 """ 
     64* **Source added by :** Steve King **Date:** March 25, 2019""" 
    5865 
    5966import numpy as np 
  • sasmodels/models/multilayer_vesicle.py

    rc1e44e5 rdb1d9d5  
    100100   R Zana and M Dekker, New York, (1987). 
    101101 
     102Source 
     103------ 
     104 
     105`multilayer_vesicle.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/multilayer_vesicle.py>`_ 
     106 
     107`multilayer_vesicle.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/multilayer_vesicle.c>`_ 
     108 
    102109Authorship and Verification 
    103110---------------------------- 
     
    107114* **Last Modified by:** Paul Kienzle **Date:** Feb 7, 2017 
    108115* **Last Reviewed by:** Steve King **Date:** March 28, 2019 
     116* **Source added by :** Steve King **Date:** March 25, 2019 
    109117""" 
    110118 
  • sasmodels/models/onion.py

    rc1e44e5 rdb1d9d5  
    187187.. [#] L A Feigin and D I Svergun, *Structure Analysis by Small-Angle X-Ray and Neutron Scattering*, Plenum Press, New York, 1987. 
    188188 
     189Source 
     190------ 
     191 
     192`onion.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/onion.py>`_ 
     193 
     194`onion.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/onion.c>`_ 
     195 
    189196Authorship and Verification 
    190197---------------------------- 
     
    193200* **Last Modified by:** 
    194201* **Last Reviewed by:** Steve King **Date:** March 28, 2019 
     202* **Source added by :** Steve King **Date:** March 25, 2019 
    195203""" 
    196204 
  • sasmodels/models/parallelepiped.py

    rc1e44e5 ra34b811  
    182182.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    183183 
     184Source 
     185------ 
     186 
     187`parallelepiped.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/parallelepiped.py>`_ 
     188 
     189`parallelepiped.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/parallelepiped.c>`_ 
     190 
    184191Authorship and Verification 
    185192---------------------------- 
     
    189196* **Last Reviewed by:**  Miguel Gonzales and Paul Butler **Date:** May 24, 
    190197  2018 - documentation updated 
     198* **Source added by :** Steve King **Date:** March 25, 2019 
    191199""" 
    192200 
  • sasmodels/models/peak_lorentz.py

    rc1e44e5 r0507e09  
    2727None. 
    2828 
     29Source 
     30------ 
     31 
     32`peak_lorentz.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/peak_lorentz.py>`_ 
     33 
     34`peak_lorentz.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/peak_lorentz.c>`_ 
     35 
    2936Authorship and Verification 
    3037---------------------------- 
    3138 
    32 * **Author:** 
    33 * **Last Modified by:** 
    34 * **Last Reviewed by:** 
     39* **Author:**  
     40* **Last Modified by:**  
     41* **Last Reviewed by:**  
     42* **Source added by :** Steve King **Date:** March 25, 2019 
    3543""" 
    3644 
  • sasmodels/models/pearl_necklace.py

    rc1e44e5 rdb1d9d5  
    5555.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    5656 
     57Source 
     58------ 
     59 
     60`pearl_necklace.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/pearl_necklace.py>`_ 
     61 
     62`pearl_necklace.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/pearl_necklace.c>`_ 
     63 
    5764Authorship and Verification 
    5865---------------------------- 
     
    6168* **Last Modified by:** Andrew Jackson **Date:** March 28, 2019 
    6269* **Last Reviewed by:** Steve King **Date:** March 28, 2019 
     70* **Source added by :** Steve King **Date:** March 25, 2019 
    6371""" 
    6472 
  • sasmodels/models/poly_gauss_coil.py

    rc1e44e5 ra34b811  
    4848.. [#] http://www.ncnr.nist.gov/staff/hammouda/distance_learning/chapter_28.pdf 
    4949 
     50Source 
     51------ 
     52 
     53`poly_gauss_coil.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/poly_gauss_coil.py>`_ 
     54 
     55`poly_gauss_coil.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/poly_gauss_coil.c>`_ 
     56 
    5057Authorship and Verification 
    5158---------------------------- 
     
    5461* **Last Modified by:** 
    5562* **Last Reviewed by:** 
     63* **Source added by :** Steve King **Date:** March 25, 2019 
    5664""" 
    5765 
  • sasmodels/models/polymer_excl_volume.py

    rc1e44e5 r0507e09  
    113113.. [#] B Hammouda & M-H Kim, *The empirical core-chain model* 247 (2017) 434-440 
    114114 
     115Source 
     116------ 
     117 
     118`polymer_excl_volume.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/polymer_excl_volume.py>`_ 
     119 
     120`polymer_excl_volume.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/polymer_excl_volume.c>`_ 
     121 
    115122Authorship and Verification 
    116123---------------------------- 
    117124 
    118 * **Author:** 
    119 * **Last Modified by:** 
    120 * **Last Reviewed by:** 
     125* **Author:**  
     126* **Last Modified by:**  
     127* **Last Reviewed by:**  
     128* **Source added by :** Steve King **Date:** March 25, 2019 
    121129""" 
    122130 
  • sasmodels/models/polymer_micelle.py

    rc1e44e5 r0507e09  
    7070.. [#] J Pedersen, *J. Appl. Cryst.*, 33 (2000) 637-640 
    7171 
     72Source 
     73------ 
     74 
     75`polymer_micelle.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/polymer_micelle.py>`_ 
     76 
     77`polymer_micelle.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/polymer_micelle.c>`_ 
     78 
    7279Authorship and Verification 
    7380---------------------------- 
     
    7683* **Last modified by:** Paul Kienzle **Date:** November 29, 2017 
    7784* **Last reviewed by:** Steve King **Date:** November 30, 2017 
     85* **Source added by :** Steve King **Date:** March 25, 2019 
    7886""" 
    7987 
  • sasmodels/models/porod.py

    rc1e44e5 r0507e09  
    2121.. [#] L A Feigin, D I Svergun, G W Taylor. *Structure Analysis by Small-Angle X-ray and Neutron Scattering*. Springer. (1987) 
    2222 
     23Source 
     24------ 
     25 
     26`porod.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/porod.py>`_ 
     27 
    2328Authorship and Verification 
    2429---------------------------- 
    2530 
    26 * **Author:** 
    27 * **Last Modified by:** 
    28 * **Last Reviewed by:** 
     31* **Author:**  
     32* **Last Modified by:**  
     33* **Last Reviewed by:**  
     34* **Source added by :** Steve King **Date:** March 25, 2019 
    2935""" 
    3036 
  • sasmodels/models/power_law.py

    rc1e44e5 r0507e09  
    2626None. 
    2727 
     28Source 
     29------ 
     30 
     31`power_law.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/power_law.py>`_ 
     32 
    2833Authorship and Verification 
    2934---------------------------- 
    3035 
    31 * **Author:** 
    32 * **Last Modified by:** 
    33 * **Last Reviewed by:** 
     36* **Author:**  
     37* **Last Modified by:**  
     38* **Last Reviewed by:**  
     39* **Source added by :** Steve King **Date:** March 25, 2019 
    3440""" 
    3541 
  • sasmodels/models/pringle.py

    rc1e44e5 ra34b811  
    4343.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    4444 
     45Source 
     46------ 
     47 
     48`pringle.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/pringle.py>`_ 
     49 
     50`pringle.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/pringle.c>`_ 
     51 
    4552Authorship and Verification 
    4653---------------------------- 
     
    4956* **Last Modified by:** Wojciech Wpotrzebowski **Date:** March 20, 2016 
    5057* **Last Reviewed by:** Andrew Jackson **Date:** September 26, 2016 
     58* **Source added by :** Steve King **Date:** March 25, 2019 
    5159""" 
    5260 
  • sasmodels/models/raspberry.py

    rc1e44e5 ra34b811  
    100100.. [#] K Larson-Smith, A Jackson, and D C Pozzo, *Small angle scattering model for Pickering emulsions and raspberry particles*, *Journal of Colloid and Interface Science*, 343(1) (2010) 36-41 
    101101 
     102Source 
     103------ 
     104 
     105`raspberry.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/raspberry.py>`_ 
     106 
     107`raspberry.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/raspberry.c>`_ 
     108 
    102109Authorship and Verification 
    103110---------------------------- 
     
    106113* **Last Modified by:** Andrew Jackson **Date:** March 20, 2016 
    107114* **Last Reviewed by:** Andrew Jackson **Date:** March 20, 2016 
     115* **Source added by :** Steve King **Date:** March 25, 2019 
    108116""" 
    109117 
  • sasmodels/models/rectangular_prism.py

    rc1e44e5 ra34b811  
    100100.. [#] L. Onsager, *Ann. New York Acad. Sci.*, 51 (1949) 627-659 
    101101 
     102Source 
     103------ 
     104 
     105`rectangular_prism.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/rectangular_prism.py>`_ 
     106 
     107`rectangular_prism.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/rectangular_prism.c>`_ 
     108 
    102109Authorship and Verification 
    103110---------------------------- 
     
    106113* **Last Modified by:** 
    107114* **Last Reviewed by:** 
     115* **Source added by :** Steve King **Date:** March 25, 2019 
    108116""" 
    109117 
  • sasmodels/models/rpa.py

    rc1e44e5 rdb1d9d5  
    6767.. [#] B. Hammouda, *SANS Toolbox* https://www.ncnr.nist.gov/staff/hammouda/the_sans_toolbox.pdf. 
    6868 
     69Source 
     70------ 
     71 
     72`rpa.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/rpa.py>`_ 
     73 
     74`rpa.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/rpa.c>`_ 
     75 
    6976Authorship and Verification 
    7077---------------------------- 
     
    7481* **Last Modified by:** Paul Butler **Date:** March 12, 2017 
    7582* **Last Reviewed by:** Steve King **Date:** March 27, 2019 
     83* **Source added by :** Steve King **Date:** March 25, 2019 
    7684""" 
    7785 
  • sasmodels/models/sc_paracrystal.py

    rc1e44e5 r0507e09  
    101101.. [#CIT1990] Hideki Matsuoka et. al. *Physical Review B*, 41 (1990) 3854 -3856 (Corrections to FCC and BCC lattice structure calculation) 
    102102 
     103Source 
     104------ 
     105 
     106`sc_paracrystal.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/sc_paracrystal.py>`_ 
     107 
     108`sc_paracrystal.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/sc_paracrystal.c>`_ 
     109 
    103110Authorship and Verification 
    104111--------------------------- 
     
    107114* **Last Modified by:** Steve King **Date:** March 25, 2019 
    108115* **Last Reviewed by:** Richard Heenan **Date:** March 21, 2016 
     116* **Source added by :** Steve King **Date:** March 25, 2019 
    109117""" 
    110118 
  • sasmodels/models/sphere.py

    r934a001 r934a001  
    3636References 
    3737---------- 
    38  
     38  
    3939.. [#] A Guinier and G. Fournet, *Small-Angle Scattering of X-Rays*, 
    4040   John Wiley and Sons, New York, (1955) 
     41 
     42Source 
     43------ 
     44 
     45`sphere.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/sphere.py>`_ 
     46 
     47`sphere.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/sphere.c>`_ 
    4148 
    4249Authorship and Verification 
     
    4653* **Last Modified by:** 
    4754* **Last Reviewed by:** S King and P Parker **Date:** 2013/09/09 and 2014/01/06 
     55* **Source added by :** Steve King **Date:** March 25, 2019 
    4856""" 
    4957 
     
    8593#2345678901234567890123456789012345678901234567890123456789012345678901234567890 
    8694tests = [ 
    87      [{}, 0.2, 0.726362], # each test starts with default parameter values 
     95     [{}, 0.2, 0.726362], # each test starts with default parameter values  
    8896     #            inside { }, unless modified. Then Q and expected value of I(Q) 
    89      # putting None for an expected result will pass the test if there are no 
     97     # putting None for an expected result will pass the test if there are no  
    9098     # errors from the routine, but without any check on the value of the result 
    9199    [{"scale": 1., "background": 0., "sld": 6., "sld_solvent": 1., 
    92        "radius": 120.}, [0.01,0.1,0.2], 
     100       "radius": 120.}, [0.01,0.1,0.2],  
    93101     [1.34836265e+04, 6.20114062e+00, 1.04733914e-01]], 
    94102     [{"scale": 1., "background": 0., "sld": 6., "sld_solvent": 1., 
    95      #  careful tests here R=120 Pd=.2, then with S(Q) at default Reff=50 
     103     #  careful tests here R=120 Pd=.2, then with S(Q) at default Reff=50  
    96104     #  (but this gets changed to 120) phi=0,2 
    97105       "radius": 120., "radius_pd": 0.2, "radius_pd_n":45}, 
    98       [0.01,0.1,0.2], [1.74395295e+04, 3.68016987e+00, 2.28843099e-01]], 
     106      [0.01,0.1,0.2], [1.74395295e+04, 3.68016987e+00, 2.28843099e-01]],   
    99107     # a list of Q values and list of expected results is also possible 
    100108    [{"scale": 1., "background": 0., "sld": 6., "sld_solvent": 1., 
    101109     "radius": 120., "radius_pd": 0.2, "radius_pd_n":45}, 
    102       0.01, 335839.88055473, 1.41045057e+11, 120.0, 8087664.122641933, 1.0], 
    103      # the longer list here checks  F1, F2, R_eff, volume, volume_ratio 
     110      0.01, 335839.88055473, 1.41045057e+11, 120.0, 8087664.122641933, 1.0],  
     111     # the longer list here checks  F1, F2, R_eff, volume, volume_ratio  
    104112    [{"radius": 120., "radius_pd": 0.2, "radius_pd_n":45}, 
    105       0.1, 482.93824329, 29763977.79867414, 120.0, 8087664.122641933, 1.0], 
     113      0.1, 482.93824329, 29763977.79867414, 120.0, 8087664.122641933, 1.0],  
    106114    [{"radius": 120., "radius_pd": 0.2, "radius_pd_n":45}, 
    107115      0.2, 1.23330406, 1850806.1197361, 120.0, 8087664.122641933, 1.0], 
    108116   #  But note P(Q) = F2/volume 
    109    #  F and F^2 are "unscaled", with for  n <F F*>S(q) or for beta approx 
     117   #  F and F^2 are "unscaled", with for  n <F F*>S(q) or for beta approx  
    110118   #          I(q) = n [<F F*> + <F><F*> (S(q) - 1)] 
    111    #  for n the number density and <.> the orientation average, and 
     119   #  for n the number density and <.> the orientation average, and  
    112120   #  F = integral rho(r) exp(i q . r) dr. 
    113121   #  The number density is volume fraction divided by particle volume. 
    114    #  Effectively, this leaves F = V drho form, where form is the usual 
     122   #  Effectively, this leaves F = V drho form, where form is the usual  
    115123   #  3 j1(qr)/(qr) or whatever depending on the shape. 
    116124   # @S RESULTS using F1 and F2 from the longer test strng above: 
     
    120128   # with by default scale=1.0, background=0.001 
    121129   # NOTE currently S(Q) volfraction is also included in scaling 
    122    #  structure_factor_mode 0 = normal decoupling approx, 
     130   #  structure_factor_mode 0 = normal decoupling approx,  
    123131   #                        1 = beta(Q) approx 
    124    # radius_effective_mode  0 is for free choice, 
     132   # radius_effective_mode  0 is for free choice,  
    125133   #                        1 is use radius from F2(Q) 
    126134   #    (sphere only has two choices, other models may have more) 
     
    128136     "radius": 120., "radius_pd": 0.2, "radius_pd_n":45,"volfraction":0.2, 
    129137     #"radius_effective":50.0,    # hard sphere structure factor 
    130      "structure_factor_mode": 1,  # mode 0 = normal decoupling approx, 
     138     "structure_factor_mode": 1,  # mode 0 = normal decoupling approx,  
    131139     #                                   1 = beta(Q) approx 
    132      "radius_effective_mode": 0   # this used default hardsphere Reff=50 
     140     "radius_effective_mode": 0   # this used default hardsphere Reff=50     
    133141     }, [0.01,0.1,0.2], [1.32473756e+03, 7.36633631e-01, 4.67686201e-02]  ], 
    134142    [{"@S": "hardsphere", 
     
    137145     "radius_effective":45.0,     # explicit Reff over rides either 50 or 120 
    138146     "structure_factor_mode": 1,  # beta approx 
    139      "radius_effective_mode": 0   # 
     147     "radius_effective_mode": 0   #  
    140148     }, 0.01, 1316.2990966463444 ], 
    141149    [{"@S": "hardsphere", 
     
    144152     "radius_effective":120.0,    # over ride Reff 
    145153     "structure_factor_mode": 1,  # beta approx 
    146      "radius_effective_mode": 0   # (mode=1 here also uses 120) 
     154     "radius_effective_mode": 0   # (mode=1 here also uses 120)  
    147155     }, [0.01,0.1,0.2], [1.57928589e+03, 7.37067923e-01, 4.67686197e-02  ]], 
    148156    [{"@S": "hardsphere", 
  • sasmodels/models/spherical_sld.py

    rc1e44e5 r627b68b  
    187187   and Neutron Scattering, Plenum Press, New York, (1987) 
    188188 
     189Source 
     190------ 
     191 
     192`spherical_sld.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/spherical_sld.py>`_ 
     193 
     194`spherical_sld.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/spherical_sld.c>`_ 
     195 
    189196Authorship and Verification 
    190197--------------------------- 
     
    193200* **Last Modified by:** Paul Kienzle **Date:** Dec 20, 2016 
    194201* **Last Reviewed by:** Steve King **Date:** March 29, 2019 
     202* **Source added by :** Steve King **Date:** March 25, 2019 
    195203""" 
    196204 
  • sasmodels/models/spinodal.py

    rc1e44e5 r0507e09  
    4444.. [#] T. Hashimoto, M. Takenaka & H. Jinnai. Scattering Studies of Self-Assembling Processes of Polymer Blends in Spinodal Decomposition. J. Appl. Cryst. 24, 457-466 (1991). 
    4545 
     46Source 
     47------ 
     48 
     49`spinodal.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/spinodal.py>`_ 
     50 
    4651Authorship and Verification 
    4752---------------------------- 
     
    5055* **Last Modified by:** Steve King **Date:** Oct 25, 2018 
    5156* **Last Reviewed by:** Steve King **Date:** Oct 25, 2018 
     57* **Source added by :** Steve King **Date:** March 25, 2019 
    5258""" 
    5359 
  • sasmodels/models/squarewell.py

    r4d00de6 r4d00de6  
    5454.. [#] M Kotlarchyk and S-H Chen, *J. Chem. Phys.*, 79 (1983) 2461-2469 
    5555 
     56Source 
     57------ 
     58 
     59`squarewell.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/squarewell.py>`_ 
     60 
    5661Authorship and Verification 
    5762---------------------------- 
     
    6065* **Last Modified by:** 
    6166* **Last Reviewed by:** Steve King **Date:** March 27, 2019 
     67* **Source added by :** Steve King **Date:** March 25, 2019 
    6268""" 
    6369 
  • sasmodels/models/stacked_disks.py

    rc1e44e5 r0507e09  
    102102   John Wiley and Sons, New York, 1955 
    103103 
     104Source 
     105------ 
     106 
     107`stacked_disks.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/stacked_disks.py>`_ 
     108 
     109`stacked_disks.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/stacked_disks.c>`_ 
     110 
    104111Authorship and Verification 
    105112---------------------------- 
     
    108115* **Last Modified by:** Paul Butler and Paul Kienzle **Date:** November 26, 2016 
    109116* **Last Reviewed by:** Paul Butler and Paul Kienzle **Date:** November 26, 2016 
     117* **Source added by :** Steve King **Date:** March 25, 2019 
    110118""" 
    111119 
  • sasmodels/models/star_polymer.py

    rc1e44e5 r0507e09  
    5050   B Ewen *Macromolecules*, 22, 468-472 (1989) 
    5151 
     52Source 
     53------ 
     54 
     55`star_polymer.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/star_polymer.py>`_ 
     56 
     57`star_polymer.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/star_polymer.c>`_ 
     58 
    5259Authorship and Verification 
    5360---------------------------- 
     
    5663* **Last Modified by:** Paul Butler **Date:** Auguts 26, 2017 
    5764* **Last Reviewed by:** Ziang Li and Richard Heenan **Date:** May 17, 2017 
     65* **Source added by :** Steve King **Date:** March 25, 2019 
    5866""" 
    5967 
  • sasmodels/models/stickyhardsphere.py

    r4d00de6 r4d00de6  
    7878.. [#] M Kotlarchyk and S-H Chen, *J. Chem. Phys.*, 79 (1983) 2461-2469 
    7979 
     80Source 
     81------ 
     82 
     83`stickyhardsphere.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/stickyhardsphere.py>`_ 
     84 
    8085Authorship and Verification 
    8186---------------------------- 
     
    8489* **Last Modified by:** 
    8590* **Last Reviewed by:** Steve King **Date:** March 27, 2019 
     91* **Source added by :** Steve King **Date:** March 25, 2019 
    8692""" 
    8793 
  • sasmodels/models/surface_fractal.py

    rc1e44e5 r0507e09  
    3838.. [#] D Mildner and P Hall, *J. Phys. D: Appl. Phys.*, 19 (1986) 1535-1545 
    3939 
     40Source 
     41------ 
     42 
     43`surface_fractal.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/surface_fractal.py>`_ 
     44 
     45`surface_fractal.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/surface_fractal.c>`_ 
     46 
    4047Authorship and Verification 
    4148---------------------------- 
    4249 
    43 * **Author:** 
    44 * **Last Modified by:** 
    45 * **Last Reviewed by:** 
     50* **Author:**  
     51* **Last Modified by:**  
     52* **Last Reviewed by:**  
     53* **Source added by :** Steve King **Date:** March 25, 2019 
    4654""" 
    4755 
  • sasmodels/models/teubner_strey.py

    rc1e44e5 r0507e09  
    6565.. [#] H Endo, M Mihailescu, M. Monkenbusch, J Allgaier, G Gompper, D Richter, B Jakobs, T Sottmann, R Strey, and I Grillo, *J. Chem. Phys.*, 115 (2001), 580 
    6666 
     67Source 
     68------ 
     69 
     70`teubner_strey.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/teubner_strey.py>`_ 
     71 
     72`teubner_strey.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/teubner_strey.c>`_ 
     73 
    6774Authorship and Verification 
    6875---------------------------- 
    6976 
    70 * **Author:** 
    71 * **Last Modified by:** 
    72 * **Last Reviewed by:** 
     77* **Author:**  
     78* **Last Modified by:**  
     79* **Last Reviewed by:**  
     80* **Source added by :** Steve King **Date:** March 25, 2019 
    7381""" 
    7482from __future__ import division 
  • sasmodels/models/triaxial_ellipsoid.py

    rc1e44e5 ra34b811  
    116116.. [#] Finnigan, J.A., Jacobs, D.J., 1971. *Light scattering by ellipsoidal particles in solution*, J. Phys. D: Appl. Phys. 4, 72-77. doi:10.1088/0022-3727/4/1/310 
    117117 
     118Source 
     119------ 
     120 
     121`triaxial_ellipsoid.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/triaxial_ellipsoid.py>`_ 
     122 
     123`triaxial_ellipsoid.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/triaxial_ellipsoid.c>`_ 
     124 
    118125Authorship and Verification 
    119126---------------------------- 
     
    122129* **Last Modified by:** Paul Kienzle (improved calculation) **Date:** April 4, 2017 
    123130* **Last Reviewed by:** Paul Kienzle & Richard Heenan **Date:**  April 4, 2017 
     131* **Source added by :** Steve King **Date:** March 25, 2019 
    124132""" 
    125133 
  • sasmodels/models/two_lorentzian.py

    rc1e44e5 r0507e09  
    2727None. 
    2828 
     29Source 
     30------ 
     31 
     32`two_lorentzian.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/two_lorentzian.py>`_ 
     33 
    2934Authorship and Verification 
    3035---------------------------- 
     
    3338* **Last Modified by:** Piotr rozyczko **Date:** January 29, 2016 
    3439* **Last Reviewed by:** Paul Butler **Date:** March 21, 2016 
     40* **Source added by :** Steve King **Date:** March 25, 2019 
    3541""" 
    3642 
  • sasmodels/models/two_power_law.py

    rc1e44e5 r0507e09  
    3737None. 
    3838 
     39Source 
     40------ 
     41 
     42`two_power_law.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/two_power_law.py>`_ 
     43 
    3944Authorship and Verification 
    4045---------------------------- 
     
    4348* **Last Modified by:** Wojciech Wpotrzebowski **Date:** February 18, 2016 
    4449* **Last Reviewed by:** Paul Butler **Date:** March 21, 2016 
     50* **Source added by :** Steve King **Date:** March 25, 2019 
    4551""" 
    4652 
  • sasmodels/models/unified_power_Rg.py

    rb606805 rb606805  
    6767.. [#] B Hammouda, *Analysis of the Beaucage model, J. Appl. Cryst.*, (2010), 43, 1474-1478 
    6868 
     69Source 
     70------ 
     71 
     72`unified_power_Rg.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/unified_power_Rg.py>`_ 
     73 
    6974Authorship and Verification 
    7075---------------------------- 
    7176 
    72 * **Author:** 
    73 * **Last Modified by:** 
    74 * **Last Reviewed by:** 
     77* **Author:**  
     78* **Last Modified by:**  
     79* **Last Reviewed by:**  
     80* **Source added by :** Steve King **Date:** March 25, 2019 
    7581""" 
    7682 
  • sasmodels/models/vesicle.py

    rc1e44e5 ra34b811  
    6060   Sons, New York, (1955) 
    6161 
     62Source 
     63------ 
     64 
     65`vesicle.py <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/vesicle.py>`_ 
     66 
     67`vesicle.c <https://github.com/SasView/sasmodels/blob/master/sasmodels/models/vesicle.c>`_ 
     68 
    6269Authorship and Verification 
    6370---------------------------- 
     
    6673* **Last Modified by:** Paul Butler **Date:** March 20, 2016 
    6774* **Last Reviewed by:** Paul Butler **Date:** September 7, 2018 
     75* **Source added by :** Steve King **Date:** March 25, 2019 
    6876""" 
    6977 
Note: See TracChangeset for help on using the changeset viewer.