Skip to main content

Modal analysis data management, simulation and storage tool

Project description

Introduction

This library is a work in progress developed by the Applied Mechanics Lab, IQS School of Engineering, as part of the research in Structural Health Monitoring (SHM). This library enables the user to store and process Frequency Response Functions (FRF). The library includes a wide range of frequency-based damage indicators found in the literature. Currently, Transmissibility Functions (TF) are being implemented in the library. The library also includes tools for building certain geometries in ANSYS and get their FRFs. If you plan on using the ANSYS module, be sure to have a working ANSYS installation.

Features

  • Basic usage: Load, store and plot FRFs.

  • Post-processing FRFs: Modify properties of FRF.

  • Frequency-based correlation indicators: Indicators used for damage detection, similarity and model updating purposes.

  • ANSYS

Installation

In order to install this module, just run

pip install pymodal

in your terminal. This will also potentially install all the requirements, which you can find in requirements.txt, although they will be included here as well for clarity’s sake:

  • numpy

  • scipy

  • matplotlib

  • pandas

  • pyansys

Dev Installation

If you wish to try and add some features yourself or modify some of the existing ones, clone the repository and, in the same folder where the repo is cloned, run the following command:

pip install -e .[dev]

This will also potentially install all the development requirements, which you can find in requirements-dev.txt, although they are included here as well for clarity’s sake:

  • pytest

  • docutils

  • doc8

  • flake8

Basic usage

Make an instance of FRF class:

At least one of the following must be specified: Resolution, Bandwidth or Maximum frequency. If not specified, minimum frequency is assumed to be 0 Hz.

frf_data = pymodal.FRF(
    frf,
    resolution,
    bandwidth,
    max_freq,
    min_freq,
    name,
    part,
    modal_frequencies
    )

Generate instance named frf_data from frf numpy array.

Add new FRFs to existing instance:

def extend(self, frf: list, name: list = None)

Save instance as zip file:

def extend(self, frf: list, name: list = None)

Plot FRF: Plot all FRFs together with varying colors unless otherwise specified.

def plot(self,
         ax: list = None,
         fontsize: float = 12,
         title: str = 'Frequency Response',
         title_size: float = None,
         major_locator: int = 4,
         minor_locator: int = 4,
         fontname: str = 'serif',
         color: list = None,
         ylabel: str = None,
         bottom_ylim: float = None,
         decimals_y: int = 1,
         decimals_x: int = 1):

Use slice to only plot specific FRFs.

frf_data[0].plot()
plt.show()

Post-processing FRFs

Change resolution

frf.change_resolution(frequencies=[0,100])

Change FRF lines

Change frequency range

Extract real part of FRF

Extract imaginary part of FRF

Calculate magnitude of FRF

Calculate phase of FRF

Extract modal frequencies

Extract mode shapes

Synthetic FRFs

Silhouette

Transmissibility matrix

Frequency-based damage indicators

Currently, the pymodal library holds the following damage indicators:

Frequency Response Function RMS [FRFRMS]:

def get_FRFRMS(self, ref:int)

https://www.sciencedirect.com/science/article/abs/pii/S1270963802011938

Global Amplitude Criterion [GAC]:

def get_GAC(self, ref:int, frf: list = None)

Average Integration Global Amplitude Criterion (AIGAC):

def get_AIGAC(self, ref:int)

Frequency Domain Assurance Criterion (FDAC):

Response Vector Assurance Criterion (RVAC)

Detection and Relative Quantification (DRQ)

Detection and Relative Quantification curvature-based (DRQ’’)

Frequency Response Function Scale Factor (FRFSF)

Coefficient of Determination (R^2)

ODS difference indicator (∆ODS)

Frequency Response Function Similarity Metric (FRFSM)

Complex Frequency Domain Assurance Crietrion [CFDAC]

Spectral Correlation Index [SCI] https://www.sciencedirect.com/science/article/abs/pii/S0888327018306551?via%3Dihub

def get_SCI(self, ref:int, part: str = 'abs')

MCP server

Pymodal ships an MCP server that exposes collection construction, signal processing, FRF computation, SHM-indicator math and PyTorch-dataset hand-off as tools an LLM agent can call directly.

Install the optional dependency:

pip install -e .[mcp]

Run the server (stdio transport):

python -m pymodal.mcp
# or, after install:
pymodal-mcp

Configure your MCP client (Claude Desktop, Claude Code, …) to launch python -m pymodal.mcp as a server. Every tool takes file paths in and writes file paths out, so a typical agent flow is

create_timeseries_collectionadd_gaussian_noisetimeseries_to_frfcompute_indicatorsplit_collectiontorch_dataset_summary.

Use list_indicators and list_collection_classes for in-tool discovery.

ANSYS

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymodal-0.2.1.tar.gz (56.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pymodal-0.2.1-py3-none-any.whl (54.7 kB view details)

Uploaded Python 3

File details

Details for the file pymodal-0.2.1.tar.gz.

File metadata

  • Download URL: pymodal-0.2.1.tar.gz
  • Upload date:
  • Size: 56.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pymodal-0.2.1.tar.gz
Algorithm Hash digest
SHA256 3b85d18b4daf72120877ff61bd36d1bc3bf24af30313a83576c66f64d76d4364
MD5 fbe23d383fac548b6bb0d0972ad8ce6b
BLAKE2b-256 a2054ee225bdd38f7fc82fd5120c84824ca5cfd6f47be79f6b75dbefcf62a904

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymodal-0.2.1.tar.gz:

Publisher: publish-pypi.yml on grcarmenaty/pymodal

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymodal-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: pymodal-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 54.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pymodal-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 cb9d270f8a75209993ce715840a0757cdeaffd6f169a498d6b316d00e87b5d5a
MD5 b93051bd2e9071f35f5cebd75017dd4f
BLAKE2b-256 944c8715a4175a4026f871a1fe3ae5efe2f5e6dafedeb358131a075f9bb67f31

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymodal-0.2.1-py3-none-any.whl:

Publisher: publish-pypi.yml on grcarmenaty/pymodal

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page