sdypy


Namesdypy JSON
Version 0.4.0 PyPI version JSON
download
home_page
SummarySDyPy - Structural Dynamics Python
upload_time2024-02-29 06:44:31
maintainer
docs_urlNone
author
requires_python>=3.10
license
keywords python structural dynamics
VCS
bugtrack_url
requirements sdypy-EMA sdypy-io sdypy-FRF sdypy-excitation
Travis-CI
coveralls test coverage No coveralls.
            |pytest| |documentation|

SDyPy - Structural Dynamics Python
----------------------------------

This package has the goal to defragment the open source effort in the scientific field 
of structural dynamics. Our goal is to speed-up the development and implementation of scientific
methods. This an open and free initiative, we stand up for:

- free MIT license,
- open development,
- open accepting of contributions,
- open decision making,
- multi-institutional engagement.

SDyPy depends on core SciPy stack packages, please use those packages where possible. If you 
would like an extension to be implemented, if it is general and not related to structural dynamics,
consider implementing it into the SciPy stack.


Installation and basic usage
----------------------------

Install this package by:

.. code-block:: console

    pip install sdypy

The `sdypy` offers a convenient way to access the functionality of the namespace packages.

First import the `sdypy` package:

.. code-block:: python

    import sdypy as sd

Access the `EMA` module:

.. code-block:: python

    model = sd.EMA.Model(FRF_matrix, freq_array)

or the `io` module:

.. code-block:: python

	uff_obj = sd.io.uff.UFF('file.uff')

or the `FRF` module:

.. code-block:: python

	frf_obj = sd.FRF.FRF(sampling_freq, excitation, response)

or the `excitation` module:

.. code-block:: python

    gausian_signal = sd.excitation.random_gaussian((N, PSD, fs))


Package integration in SDyPy
----------------------------

The existing efforts in the field of structural dynamics are included in SDyPy according to
the level of integration (see `SEP 1 <https://github.com/sdypy/sdypy/blob/main/docs/seps/sep-0001.rst>`_).

- **1st level** (part of SDyPy repository or organization):
   - `sdypy-EMA <https://github.com/sdypy/sdypy-EMA>`_ (Experimental Modal Analysis in Python)
   - `sdypy-io <https://github.com/sdypy/sdypy-io>`_ (Input/Output for Structural Dynamics)
   - `sdypy-FRF <https://github.com/sdypy/sdypy-FRF>`_ (Frequency Response Function estimation)
   - `sdypy-excitation <https://github.com/sdypy/sdypy-excitation>`_ (Excitation signals as used in structural dynamics and vibration fatigue)

- **2nd level** (namespace package in independent repository):
   
- **3rd level** (packages that correspond to the SDyPy template):
   - `pyExSi <https://github.com/ladisk/pyExSi>`_ (Excitation signal generator)
   - `FLife <https://github.com/ladisk/FLife>`_ (Vibration fatigue life in the spectral domain)
   - `pyIDI <https://github.com/ladisk/pyidi>`_ (Image-Based Displacement Identification)
   
- **4th level** (these packages are developed completely independently but might be useful for 3rd, 2nd and 1st level packages):
   - `pyFRF <https://github.com/openmodal/pyFRF>`_ (Frequency Response Function estimation)
   - `pyFBS <https://gitlab.com/pyFBS/pyFBS>`_ (Frequency Based Substructuring and Transfer Path Analysis)
   - `speckle_pattern <https://github.com/ladisk/speckle_pattern>`_ (Speckle pattern generation for DIC)
   - `pyUFF <https://github.com/ladisk/pyuff>`_ (Universal File Format in Python)
   - `pyNNST <https://github.com/LolloCappo/pyNNST>`_ (Obtaining non-stationary index for time-series)
   - `python-acoustics <https://github.com/python-acoustics/python-acoustics>`_ (Useful tools for acousticians)
   - `pyTrigger <https://github.com/ladisk/pyTrigger>`_ (Software trigger for data acquisition)
   - `AMfe <https://github.com/AppliedMechanics/AMfe>`_ (Finite Element Research Code)


..  |documentation| image:: https://readthedocs.org/projects/sdypy/badge/?version=latest
    :target: https://sdypy.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

.. |pytest| image:: https://github.com/sdypy/sdypy/actions/workflows/python-package.yml/badge.svg
    :target: https://github.com/sdypy/sdypy/actions

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "sdypy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "\"Janko Slavi\u010d et al.\" <janko.slavic@fs.uni-lj.si>",
    "keywords": "Python,Structural Dynamics",
    "author": "",
    "author_email": "\"Janko Slavi\u010d et al.\" <janko.slavic@fs.uni-lj.si>",
    "download_url": "https://files.pythonhosted.org/packages/b4/23/4ef4bf8b1955eab17817443a21079916000a3b5b15affb2fe29b9ad4a4fc/sdypy-0.4.0.tar.gz",
    "platform": null,
    "description": "|pytest| |documentation|\n\nSDyPy - Structural Dynamics Python\n----------------------------------\n\nThis package has the goal to defragment the open source effort in the scientific field \nof structural dynamics. Our goal is to speed-up the development and implementation of scientific\nmethods. This an open and free initiative, we stand up for:\n\n- free MIT license,\n- open development,\n- open accepting of contributions,\n- open decision making,\n- multi-institutional engagement.\n\nSDyPy depends on core SciPy stack packages, please use those packages where possible. If you \nwould like an extension to be implemented, if it is general and not related to structural dynamics,\nconsider implementing it into the SciPy stack.\n\n\nInstallation and basic usage\n----------------------------\n\nInstall this package by:\n\n.. code-block:: console\n\n    pip install sdypy\n\nThe `sdypy` offers a convenient way to access the functionality of the namespace packages.\n\nFirst import the `sdypy` package:\n\n.. code-block:: python\n\n    import sdypy as sd\n\nAccess the `EMA` module:\n\n.. code-block:: python\n\n    model = sd.EMA.Model(FRF_matrix, freq_array)\n\nor the `io` module:\n\n.. code-block:: python\n\n\tuff_obj = sd.io.uff.UFF('file.uff')\n\nor the `FRF` module:\n\n.. code-block:: python\n\n\tfrf_obj = sd.FRF.FRF(sampling_freq, excitation, response)\n\nor the `excitation` module:\n\n.. code-block:: python\n\n    gausian_signal = sd.excitation.random_gaussian((N, PSD, fs))\n\n\nPackage integration in SDyPy\n----------------------------\n\nThe existing efforts in the field of structural dynamics are included in SDyPy according to\nthe level of integration (see `SEP 1 <https://github.com/sdypy/sdypy/blob/main/docs/seps/sep-0001.rst>`_).\n\n- **1st level** (part of SDyPy repository or organization):\n   - `sdypy-EMA <https://github.com/sdypy/sdypy-EMA>`_ (Experimental Modal Analysis in Python)\n   - `sdypy-io <https://github.com/sdypy/sdypy-io>`_ (Input/Output for Structural Dynamics)\n   - `sdypy-FRF <https://github.com/sdypy/sdypy-FRF>`_ (Frequency Response Function estimation)\n   - `sdypy-excitation <https://github.com/sdypy/sdypy-excitation>`_ (Excitation signals as used in structural dynamics and vibration fatigue)\n\n- **2nd level** (namespace package in independent repository):\n   \n- **3rd level** (packages that correspond to the SDyPy template):\n   - `pyExSi <https://github.com/ladisk/pyExSi>`_ (Excitation signal generator)\n   - `FLife <https://github.com/ladisk/FLife>`_ (Vibration fatigue life in the spectral domain)\n   - `pyIDI <https://github.com/ladisk/pyidi>`_ (Image-Based Displacement Identification)\n   \n- **4th level** (these packages are developed completely independently but might be useful for 3rd, 2nd and 1st level packages):\n   - `pyFRF <https://github.com/openmodal/pyFRF>`_ (Frequency Response Function estimation)\n   - `pyFBS <https://gitlab.com/pyFBS/pyFBS>`_ (Frequency Based Substructuring and Transfer Path Analysis)\n   - `speckle_pattern <https://github.com/ladisk/speckle_pattern>`_ (Speckle pattern generation for DIC)\n   - `pyUFF <https://github.com/ladisk/pyuff>`_ (Universal File Format in Python)\n   - `pyNNST <https://github.com/LolloCappo/pyNNST>`_ (Obtaining non-stationary index for time-series)\n   - `python-acoustics <https://github.com/python-acoustics/python-acoustics>`_ (Useful tools for acousticians)\n   - `pyTrigger <https://github.com/ladisk/pyTrigger>`_ (Software trigger for data acquisition)\n   - `AMfe <https://github.com/AppliedMechanics/AMfe>`_ (Finite Element Research Code)\n\n\n..  |documentation| image:: https://readthedocs.org/projects/sdypy/badge/?version=latest\n    :target: https://sdypy.readthedocs.io/en/latest/?badge=latest\n    :alt: Documentation Status\n\n.. |pytest| image:: https://github.com/sdypy/sdypy/actions/workflows/python-package.yml/badge.svg\n    :target: https://github.com/sdypy/sdypy/actions\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "SDyPy - Structural Dynamics Python",
    "version": "0.4.0",
    "project_urls": {
        "documentation": "https://sdypy.readthedocs.io/en/latest/",
        "homepage": "https://github.com/sdypy/sdypy",
        "source": "https://github.com/sdypy/sdypy"
    },
    "split_keywords": [
        "python",
        "structural dynamics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8037666dd5f8e4e142534c782b2420305465c54088b47e4626667c7ef2eab7b6",
                "md5": "09d5fc6bea1e3b096d54a9cf58223b78",
                "sha256": "25a87fb3f17050a7ebc409e13e289f23c14889e71db3aaf32c6f0674b36547f7"
            },
            "downloads": -1,
            "filename": "sdypy-0.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "09d5fc6bea1e3b096d54a9cf58223b78",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 4045,
            "upload_time": "2024-02-29T06:44:29",
            "upload_time_iso_8601": "2024-02-29T06:44:29.905343Z",
            "url": "https://files.pythonhosted.org/packages/80/37/666dd5f8e4e142534c782b2420305465c54088b47e4626667c7ef2eab7b6/sdypy-0.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4234ef4bf8b1955eab17817443a21079916000a3b5b15affb2fe29b9ad4a4fc",
                "md5": "0cecea0148d1f67a61853f5a1a4c22a3",
                "sha256": "585165bb2e68cfe9653fbfbc34aa48a2a3a95f80625bbf5a60dc0dd4a12f4a19"
            },
            "downloads": -1,
            "filename": "sdypy-0.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "0cecea0148d1f67a61853f5a1a4c22a3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 11049882,
            "upload_time": "2024-02-29T06:44:31",
            "upload_time_iso_8601": "2024-02-29T06:44:31.842682Z",
            "url": "https://files.pythonhosted.org/packages/b4/23/4ef4bf8b1955eab17817443a21079916000a3b5b15affb2fe29b9ad4a4fc/sdypy-0.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-29 06:44:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "sdypy",
    "github_project": "sdypy",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "sdypy-EMA",
            "specs": []
        },
        {
            "name": "sdypy-io",
            "specs": []
        },
        {
            "name": "sdypy-FRF",
            "specs": []
        },
        {
            "name": "sdypy-excitation",
            "specs": []
        }
    ],
    "lcname": "sdypy"
}
        
Elapsed time: 0.19507s