Metadata-Version: 2.1
Name: UQToolbox
Version: 1.0.4
Summary: Tools for Uncertainty Quantification
Home-page: http://www2.compute.dtu.dk/~dabi/
Author: Daniele Bigoni
Author-email: dabi@dtu.dk
License: COPYING.LESSER
Platform: UNKNOWN
Requires-Dist: scipy
Requires-Dist: Sphinx
Requires-Dist: sphinxcontrib-bibtex
Requires-Dist: SpectralToolbox
Requires-Dist: prettytable

==================================
Uncertainty Quantification Toolbox
==================================

This is a collection of tools for Uncertainty Quantification

Features:
 - Sampling methods (Monte Carlo, Latin Hypercube, Quasi Monte Carlo) with MPI support
 - Tools for Generalized Polynomial Chaos
 - Probabilistic Collocation Method
 - Multi-element Probabilistic Collocation Method
 - High Dimensional Model Representation
 - ANOVA
 - Global Sensitivity (Total Sensitivity Indices)
 - Model reduction (Karhunen–Loève expansion)

Status
======

`PyPi <https://pypi.python.org/pypi/UQToolbox/>`_:

.. image:: http://southpacific.no-ip.org:8080/buildStatus/icon?job=pypi-UQToolbox
   :target: http://southpacific.no-ip.org:8080/buildStatus/icon?job=pypi-UQToolbox

`LaunchPad <https://launchpad.net/uqtoolbox>`_:

.. image:: http://southpacific.no-ip.org:8080/buildStatus/icon?job=UQToolbox
   :target: http://southpacific.no-ip.org:8080/buildStatus/icon?job=UQToolbox

`TestPyPi <https://testpypi.python.org/pypi/UQToolbox/>`_:

.. image:: http://southpacific.no-ip.org:8080/buildStatus/icon?job=testpypi-UQToolbox
   :target: http://southpacific.no-ip.org:8080/buildStatus/icon?job=testpypi-UQToolbox

Requirements
============
Some parts of the software require the `SpectralToolbox <https://pypi.python.org/pypi/SpectralToolbox/>`_. The package has automatically MPI support through `mpi4py <https://pypi.python.org/pypi/mpi4py/>`_ and `mpi_map <https://pypi.python.org/pypi/mpi_map/>`_.

Installation
============

Make sure you have the latest version of pip:

   $ pip install --upgrade pip

Install running:

    $ pip install UQToolbox

Some users might want to install the toolbox *without MPI* support. This is possible, but not through the ``pip`` command:

     $ pip download UQToolbox

     $ cd /pth/to/downloaded/files

     $ tar xzf UQToolbox-x.x.x.tar.gz

     $ cd UQToolbox-x.x.x

     $ python setup.py install --without-mpi4py

Test Installation
=================
You can test whether all the functionalities work by running the unit tests.

    >>> import UQToolbox
    >>> UQToolbox.RunUnitTests(maxprocs=None,PLOTTING=True)

where ``maxprocs`` defines the number of processors to be used if MPI support is activated. Be patient. The number of unit tests grows with the number of functionalities implemented in the software.


