Probabilistic Estimation of Losses, Injuries, and Community resilience Under Natural hazard events
pelicun
is a Python package that provides tools for assessment of damage and losses due to natural hazard events. It uses a stochastic damage and loss model that is an extension of the high-resolution PEER performance assessment methodology described in FEMA P58 (FEMA, 2012). While FEMA P58 aims to assess the seismic performance of a building, with pelicun
we provide a more versatile, hazard-agnostic tool to assess the performance of several types of assets in the built environment.
Detailed documentation of the available methods and their use is available at http://nheri-simcenter.github.io/pelicun
pelicun
quantifies losses from an earthquake or hurricane scenario in the form of decision variables. This functionality is typically utilized for performance-based engineering and regional risk assessment. There are several steps of performance assessment that pelicun
can help with:
-
Describe the joint distribution of asset response. The response of a structure or other type of asset to an earthquake or hurricane wind is typically described by so-called engineering demand parameters (EDPs).
pelicun
provides methods that take a finite number of EDP vectors and find a multivariate distribution that describes the joint distribution of EDP data well. You can control the type of target distribution, apply truncation limits and censor part of the data to consider detection limits in your analysis. Alternatively, you can choose to use your EDP vectors as-is without resampling from a fitted distribution. -
Define the damage and loss model of a building. The component damage and loss data from the first two editions of FEMA P58 and the HAZUS earthquake and hurricane models for buildings are provided with pelicun. This makes it easy to define building components without having to collect and provide all the data manually. The stochastic damage and loss model is designed to facilitate modeling correlations between several parameters of the damage and loss model.
-
Estimate component damages. Given a damage and loss model and the joint distribution of EDPs,
pelicun
provides methods to estimate the amount of damaged components and the number of cases with collapse. -
Estimate consequences. Using information about collapse and component damages, the following consequences can be estimated with the loss model: reconstruction cost and time, unsafe placarding (red tag), injuries and fatalities.
- It is free and it always will be.
- It is open source. You can always see what is happening under the hood.
- It is efficient. The loss assessment calculations in
pelicun
usenumpy
,scipy
, andpandas
libraries to efficiently propagate uncertainties and provide detailed results quickly. - You can trust it. Every function in
pelicun
is tested after every commit. See the Travis-CI and Coveralls badges at the top for more info. - You can extend it. If you have other methods that you consider better than the ones we already offer, we encourage you to fork the repo, and extend
pelicun
with your approach. You do not need to share your extended version with the community, but if you are interested in doing so, contact us and we are more than happy to merge your version with the official release.
pelicun
is available at the Python Package Index (PyPI). You can simply install it using pip
as follows:
pip install pelicun
If you are interested in using an earlier version, you can install it with the following command:
pip install pelicun==2.6.0
Note that 2.6.0 is the last minor version before the v3.0 release. Other earlier versions can be found here.
Developers are expected to fork and clone this repository, and install their copy in development mode. Using a virtual environment is highly recommended.
# Clone the repository:
git clone https://github.com/<user>/pelicun
cd pelicun
# Switch to the appropriate branch, if needed.
# git checkout <branch>
# Install pelicun:
# Note: don't forget to activate the corresponding environment.
python -m pip install -e .[development]
Contributions are managed with pull requests. It is required that contributed code is PEP 8 compliant, does not introduce linter warnings and includes sufficient unit tests so as to avoid reducing the current coverage level.
The following lines implement the aforementioned checks.
flake8
, pylint
and pytest
can all be configured for use within an IDE.
cd <path-to>/pelicun
export PYTHONPATH=$PYTHONPATH:$(pwd)
# Linting with flake8:
flake8 pelicun
# Linting with pylint:
pylint pelicun
# Type checking with mypy:
mypy pelicun --no-namespace-packages
# Running the tests:
python -m pytest pelicun/tests --cov=pelicun --cov-report html
# Open `htmlcov/index.html`in a browser to see coverage results.
Feel free to open an issue if you encounter problems setting up the provided development environment.
The release notes are available in the online documentation
pelicun
is distributed under the BSD 3-Clause license, see LICENSE.
This material is based upon work supported by the National Science Foundation under Grants No. 1612843 2131111. Any opinions, findings, and conclusions or recommendations expressed in this material are those of the authors and do not necessarily reflect the views of the National Science Foundation.
Adam Zsarnóczay, NHERI SimCenter, Stanford University, adamzs@stanford.edu