Skip to content

A repository for modelling and analysing multi-degree-of-freedom systems for response characterisation of global building classes

License

Notifications You must be signed in to change notification settings

GEMScienceTools/oq-vmtk

Repository files navigation

Windows Tests Linux Tests

Contributors Forks Stargazers Issues project_license


Logo

Vulnerability Modeller's ToolKit (OQ-VMTK)

This repository contains an open source library that provides modelling of multi-degree-of-freedom systems and assessment via nonlinear time-history analyses for regional vulnerability and risk calculations. The vulnerability toolkit is developed by the Global Earthquake Model (GEM) Foundation and its collaborators.
Explore the docs »

View Demos · Report Bug · Request Feature

✨ Key Features

The OQ-VMTK is a powerful toolkit developed by scientists at the Global Earthquake Model (GEM) Foundation. Designed for earthquake engineers and catastrophe modellers, it provides a comprehensive OpenSees-based platform for running representative (idealised) models, developing fragility and vulnerability assessments, and offering extensive flexibility in defining seismic demand, structural capacity, damage criteria, and damage-to-loss conversion.

🏗️ Single/Multi-Degree-of-Freedom System Modeling

  • Effortlessly create single- and multi-degree-of-freedom models using intuitive low-level parameters.
  • Define structures with key attributes like storey count, first-mode transformation factors, and force-deformation relationships.

🔍 Comprehensive Analysis Suite

📊 Linear & Nonlinear Analysis

  • Modal Analysis: Extract vibration periods and mode shapes with precision.
  • Gravity Analysis: Perform gravity analysis and ensure system stability before running advanced simulations.
  • Nonlinear Static Analysis: Perform static and cyclic pushover tests to assess the system's lateral load resisting capacity, dissipated energy and other metrics.
  • Dynamic Time-History Analysis: Simulate dynamic response of structures using selected ground-motion records.

🌍 Seismic Fragility & Vulnerability Assessment

  • Fragility Analysis: Characterize EDP|IM relationships using Cloud Analysis and determine damage exceedance probabilities (accounting for record-to-record variability & modeling uncertainty).
  • Storey Loss Function Generation: Generate storey loss functions based on user-specific inventory of structural and nonstructural components and building contents.
  • Vulnerability Analysis: Derive vulnerability functions to estimate economic and human-based decision variables, incorporating damage-to-loss ratios and/or storey loss functions.

📈 Powerful Visualization & Plotting Tools

  • Generate insightful plots for:
    • Model Overview: Nodes and elements in your OpenSees model.
    • Cloud Analysis Results: Fitted IM|EDP relationships.
    • Seismic Demand Profiles: Peak storey drifts and floor accelerations.
    • Fragility Functions: Visualize probability-based structural performance.
    • Storey Loss Functions: Visualize storey loss function simulations and models.
    • Vulnerability Functions: Understand risk and loss estimates.

🚀 Get Started

👩‍💻🧑‍💻 Installation

Follow these steps to install the oq-vmtk package and its dependencies. Note that this procedure implies the installation of the OpenQuake engine dependencies. This procedure was tested on Windows and Linux OS. It is highly recommended to use a virtual environment to install this tool. A virtual environment is an isolated Python environment that allows you to manage dependencies for this project separately from your system’s Python installation. This ensures that the required dependencies for the OpenQuake engine do not interfere with other Python projects or system packages, which could lead to version conflicts.

1. Clone the Repository

Open your terminal, and run:

cd <virtual_environment_directory>
git clone https://github.com/GEMScienceTools/oq-vmtk.git
cd oq-vmtk

2. Set Up a Virtual Environment (Recommended)

Create a virtual environment to manage dependencies:

python -m venv .venv  # On Windows
python3 -m venv .venv  # On Linux

Activate the virtual environment:

.venv\Scripts\activate  # On Windows
source .venv/Scripts/activate  # On Linux

3. Install Dependencies

Install the required packages listed in requirements.txt.

For Windows Users: Install the appropriate requirements file based on your Python version:

pip install -r requirements-py311-win64.txt  # Python 3.11
pip install -r requirements-py312-win64.txt  # Python 3.12

For Linux Users: Install the appropriate requirements file based on your Python version:

pip install -r requirements-py310-linux64.txt  # Python 3.11
pip install -r requirements-py311-linux64.txt  # Python 3.11
pip install -r requirements-py312-linux64.txt  # Python 3.12

For macOS Users: OpenSeesPy does not currently support macOS versions running on arm64 processors, such as M1 and M2 chips. As a result, newer OpenSeesPy versions are not available for macOS. To use OpenSeesPy on a Mac, it is advised to run a virtual machine with Linux or Windows.

Note: to check your current python version, run the following command

python --version

4. Install the Package

Install the oq-vmtk package in editable mode:

pip install -e .

📼 Demos

The repository includes demo scripts that showcase the functionality of the vulnerability-modellers-toolkit (oq-vmtk). You can find them in the demos folder of the repository.

To run a demo, simply navigate to the demos directory and execute the relevant demo script in Jupyter Lab. Jupyter Lab is automatically installed with oq-vmtk.

1. Activate the virtual environment:

.venv\Scripts\activate  # On Windows
source .venv/Scripts/activate  # On Linux

Note: to deactivate virtual environment:

 deactivate

2. Open Jupyter Lab from the terminal:

 jupyter-lab

3. Navigate to the "demos" folder

4. Run the examples

© License

This work is licensed under an AGPL v3 license (https://www.gnu.org/licenses/agpl-3.0.en.html)

License: AGPL v3

📚 Documentation

For detailed documentation and user guidance on using the toolkit for vulnerability modeling, including installation instructions, key functionalities, and example workflows, please visit: https://gemsciencetools.github.io/oq-vmtk

📑 References

[WIP]

🤝 Contributions

You can follow the instructions indicated in the contributing guidelines

🌟 Contributors

Contributors are gratefully acknowledged.

contrib.rocks image

(back to top)