|
| 1 | +diffpy.srmise |
| 2 | +======================================================================== |
| 3 | + |
| 4 | +Tool for unbiased peak extraction from atomic pair distribution functions. |
| 5 | + |
| 6 | +The diffpy.srmise package is an implementation of the `ParSCAPE algorithm |
| 7 | +<https://dx.doi.org/10.1107/S2053273315005276>`_ for peak extraction from |
| 8 | +atomic pair distribution functions (PDFs). It is designed to function even |
| 9 | +when *a priori* knowledge of the physical sample is limited, utilizing the |
| 10 | +Akaike Information Criterion (AIC) to estimate whether peaks are |
| 11 | +statistically justified relative to alternate models. Three basic use cases |
| 12 | +are anticipated for diffpy.srmise. The first is peak fitting a user-supplied |
| 13 | +collections of peaks. The second is peak extraction from a PDF with no (or |
| 14 | +only partial) user-supplied peaks. The third is an AIC-driven multimodeling |
| 15 | +analysis where the output of multiple diffpy.srmise trials are ranked. |
| 16 | + |
| 17 | +The framework for peak extraction defines peak-like clusters within the data, |
| 18 | +extracts a single peak within each cluster, and iteratively combines nearby |
| 19 | +clusters while performing a recursive search on the residual to identify |
| 20 | +occluded peaks. Eventually this results in a single global cluster |
| 21 | +containing many peaks fit over all the data. Over- and underfitting are |
| 22 | +discouraged by use of the AIC when adding or removing (during a pruning step) |
| 23 | +peaks. Termination effects, which can lead to physically spurious peaks in |
| 24 | +the PDF, are incorporated in the mathematical peak model and the pruning step |
| 25 | +attempts to remove peaks which are fit better as termination ripples due to |
| 26 | +another peak. |
| 27 | + |
| 28 | +Where possible, diffpy.srmise provides physically reasonable default values |
| 29 | +for extraction parameters. However, the PDF baseline should be estimated by |
| 30 | +the user before extraction, or by performing provisional peak extraction with |
| 31 | +varying baseline parameters. The package defines a linear (crystalline) |
| 32 | +baseline, arbitrary polynomial baseline, a spherical nanoparticle baseline, |
| 33 | +and an arbitrary baseline interpolated from a list of user-supplied values. |
| 34 | +In addition, PDFs with accurate experimentally-determined uncertainties are |
| 35 | +necessary to provide the most reliable results, but historically such PDFs |
| 36 | +are rare. In the absence of accurate uncertainties an ad hoc uncertainty |
| 37 | +must be specified. |
| 38 | + |
| 39 | +For more information about the diffpy.srmise library, see the users manual at |
| 40 | +http://diffpy.github.io/diffpy.srmise. |
| 41 | + |
| 42 | +REQUIREMENTS |
| 43 | +------------------------------------------------------------------------ |
| 44 | + |
| 45 | +The diffpy.srfit package requires Python 2.6 or 2.7 and the following software: |
| 46 | + |
| 47 | +* ``setuptools`` - software distribution tools for Python |
| 48 | +* ``NumPy`` - numerical mathematics and fast array operations for Python |
| 49 | +* ``SciPy`` - scientific libraries for Python |
| 50 | +* ``matplotlib`` - python plotting library |
| 51 | + |
| 52 | +On Ubuntu Linux, the required software can easily be installed using |
| 53 | +the system package manager:: |
| 54 | + |
| 55 | + sudo apt-get install \ |
| 56 | + python-setuptools python-numpy python-scipy python-matplotlib |
| 57 | + |
| 58 | +For Mac OS X systems with the MacPorts package manager, the required |
| 59 | +software can be installed with :: |
| 60 | + |
| 61 | + sudo port install \ |
| 62 | + python27 py27-setuptools py27-numpy py27-scipy py27-matplotlib |
| 63 | + |
| 64 | +When installing for MacPorts, make sure the MacPorts bin directory is the first |
| 65 | +in the system PATH and that python27 is selected as the default Python version |
| 66 | +in MacPorts:: |
| 67 | + |
| 68 | + sudo port select --set python python27 |
| 69 | + |
| 70 | +For Windows systems, it is recommended to install all dependencies using |
| 71 | +prebuilt binaries. Visit http://www.scipy.org and http://www.matplotlib.org |
| 72 | +for instructions. Alternately, install a full Python distribution such as |
| 73 | +Python(x,y) or Enthought Canopy which already include the required |
| 74 | +components. |
| 75 | + |
| 76 | +INSTALLATION |
| 77 | +------------------------------------------------------------------------ |
| 78 | + |
| 79 | +The simplest way to obtain diffpy.srmise on Unix, Linux, and Mac systems is |
| 80 | +using ``easy_install`` to download and install the latest release from |
| 81 | +`Python Package Index <https://pypi.python.org>`_ :: |
| 82 | + |
| 83 | + sudo easy_install diffpy.srmise |
| 84 | + |
| 85 | +If you prefer to install from sources, make sure all required software packages |
| 86 | +are in place and then run :: |
| 87 | + |
| 88 | + sudo python setup.py install |
| 89 | + |
| 90 | +This installs diffpy.srmise for all users in the default system location. If |
| 91 | +administrator (root) access is not available, see the usage info from |
| 92 | +``python setup.py install --help`` for options to install to user-writable |
| 93 | +directories. |
| 94 | + |
| 95 | +To install on Windows run either of the commands above omitting ``sudo``. |
| 96 | +While diffpy.srmise will run on Windows, note that Windows is not currently |
| 97 | +supported in the official DiffPy-CMI release containing all diffpy |
| 98 | +subpackages. |
| 99 | + |
| 100 | + |
| 101 | +DEVELOPMENT |
| 102 | +------------------------------------------------------------------------ |
| 103 | + |
| 104 | +diffpy.srmise is open-source software developed with support of the Center of |
| 105 | +Research Excellence in Complex Materials at Michigan State University, in |
| 106 | +cooperation with the DiffPy-CMI complex modeling initiative at the Brookhaven |
| 107 | +National Laboratory. The diffpy.srmise sources are hosted at |
| 108 | +https://github.com/diffpy/diffpy.srmise. |
| 109 | + |
| 110 | +Feel free to fork the project and contribute. To install diffpy.srmise in a |
| 111 | +development mode, with its sources being directly used by Python rather than |
| 112 | +copied to a package directory, use :: |
| 113 | + |
| 114 | + python setup.py develop --user |
| 115 | + |
| 116 | + |
| 117 | +ACKNOWLEDGEMENT |
| 118 | +------------------------------------------------------------------------ |
| 119 | + |
| 120 | +The source code of *pdfdataset.py* was derived from diffpy.pdfgui. |
| 121 | + |
| 122 | + |
| 123 | +CONTACTS |
| 124 | +------------------------------------------------------------------------ |
| 125 | + |
| 126 | +For more information on diffpy.srmise please visit the project web-page |
| 127 | + |
| 128 | +http://www.diffpy.org |
| 129 | + |
| 130 | +or email Prof. Simon Billinge at [email protected]. |
0 commit comments