pyyeti


Namepyyeti JSON
Version 1.4.5 PyPI version JSON
download
home_pageNone
SummaryTools mostly related to structural dynamics
upload_time2025-07-09 22:49:57
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
<a href="https://travis-ci.com/twmacro/pyyeti"><img alt="Build Status" src="https://travis-ci.com/twmacro/pyyeti.svg?branch=master"></a>
<a href="https://pyyeti.readthedocs.io/en/latest/?badge=latest"><img alt="Documentation Status" src="https://readthedocs.org/projects/pyyeti/badge/?version=latest"></a>
<a href="https://coveralls.io/github/twmacro/pyyeti?branch=master"><img alt="Coverage Status" src="https://coveralls.io/repos/github/twmacro/pyyeti/badge.svg?branch=master"></a>
<a href="https://github.com/twmacro/pyyeti/blob/master/LICENSE.txt"><img alt="License: BSD 3-Clause" src="https://img.shields.io/badge/License-BSD%203--Clause-blue.svg"></a>
<a href="https://pypi.org/project/pyyeti/"><img alt="PyPI" src="https://img.shields.io/pypi/v/pyyeti"></a>
<a href="https://github.com/twmacro/pyyeti"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
</p>


# pyYeti

pyYeti has tools mostly related to structural dynamics:


* Solve matrix equations of motion in the time and frequency domains
* Shock response spectrum (SRS)
* Fatigue damage equivalent power spectral densities (PSD)
* Hurty-Craig-Bampton model checks
* Coupled loads analysis tools
* Statistics tools for computing k-factors (for tolerance bounds and intervals) and for order statistics
* A data-cursor for interacting with 2D/3D matplotlib plots
* Eigensystem Realization Algorithm
* Force limiting analysis tools
* Read/write Nastran output4 (.op4) files
* Limited capability to read Nastran output2 (.op2) files
* Rainflow cycle counting
* Resample data with the Lanczos method
* A "vectorized" writing module
* Eigensolution with the subspace iteration method
* Tools for working with the "nas2cam" Nastran DMAP
* Other miscellaneous tools


## Installation

pyYeti runs on Python 3.10 or later. The dependencies are NumPy, SciPy,
Matplotlib, pandas and setuptools. These are all conveniently provided
by the Anaconda Python distribution:
https://www.anaconda.com/distribution/.

You can install pyYeti via `pip`:

    python -m pip install pyyeti
    
or:

    python -m pip install --user --upgrade pyyeti

You can also install from source, doing something like this:

    git clone https://github.com/twmacro/pyyeti.git
    cd pyyeti
    python -m build -n
    cd dist
    python -m pip install <filename>.whl

Note that for the C version of the rainflow cycle counter, you also
need a C compiler installed. However, the speed of the pure Python
version is on par with the C version if you have Numba installed. In
fact, the C version may be removed in the future after making Numba a
required dependency.


## Documentation

pyYeti documentation is here:

   http://pyyeti.readthedocs.org/


## Tutorials

The documentation contains several tutorials in the documentation.
These are also available (in their original form) as Jupyter
notebooks:

   https://github.com/twmacro/pyyeti/tree/master/docs/tutorials


## License

BSD. See [LICENSE.txt](LICENSE.txt)


## Contributing to pyYeti

Contributions are much appreciated. Bug reports, documentation
updates, feature requests, and code enhancements are all great
ways to contribute.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pyyeti",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Tim Widrick <twmacro@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/a1/ef/4bddbb47a2a91ce5a279ddf69f71b80c81a98bcdab819c667eea3f1e0d40/pyyeti-1.4.5.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n<a href=\"https://travis-ci.com/twmacro/pyyeti\"><img alt=\"Build Status\" src=\"https://travis-ci.com/twmacro/pyyeti.svg?branch=master\"></a>\n<a href=\"https://pyyeti.readthedocs.io/en/latest/?badge=latest\"><img alt=\"Documentation Status\" src=\"https://readthedocs.org/projects/pyyeti/badge/?version=latest\"></a>\n<a href=\"https://coveralls.io/github/twmacro/pyyeti?branch=master\"><img alt=\"Coverage Status\" src=\"https://coveralls.io/repos/github/twmacro/pyyeti/badge.svg?branch=master\"></a>\n<a href=\"https://github.com/twmacro/pyyeti/blob/master/LICENSE.txt\"><img alt=\"License: BSD 3-Clause\" src=\"https://img.shields.io/badge/License-BSD%203--Clause-blue.svg\"></a>\n<a href=\"https://pypi.org/project/pyyeti/\"><img alt=\"PyPI\" src=\"https://img.shields.io/pypi/v/pyyeti\"></a>\n<a href=\"https://github.com/twmacro/pyyeti\"><img alt=\"Code style: black\" src=\"https://img.shields.io/badge/code%20style-black-000000.svg\"></a>\n</p>\n\n\n# pyYeti\n\npyYeti has tools mostly related to structural dynamics:\n\n\n* Solve matrix equations of motion in the time and frequency domains\n* Shock response spectrum (SRS)\n* Fatigue damage equivalent power spectral densities (PSD)\n* Hurty-Craig-Bampton model checks\n* Coupled loads analysis tools\n* Statistics tools for computing k-factors (for tolerance bounds and intervals) and for order statistics\n* A data-cursor for interacting with 2D/3D matplotlib plots\n* Eigensystem Realization Algorithm\n* Force limiting analysis tools\n* Read/write Nastran output4 (.op4) files\n* Limited capability to read Nastran output2 (.op2) files\n* Rainflow cycle counting\n* Resample data with the Lanczos method\n* A \"vectorized\" writing module\n* Eigensolution with the subspace iteration method\n* Tools for working with the \"nas2cam\" Nastran DMAP\n* Other miscellaneous tools\n\n\n## Installation\n\npyYeti runs on Python 3.10 or later. The dependencies are NumPy, SciPy,\nMatplotlib, pandas and setuptools. These are all conveniently provided\nby the Anaconda Python distribution:\nhttps://www.anaconda.com/distribution/.\n\nYou can install pyYeti via `pip`:\n\n    python -m pip install pyyeti\n    \nor:\n\n    python -m pip install --user --upgrade pyyeti\n\nYou can also install from source, doing something like this:\n\n    git clone https://github.com/twmacro/pyyeti.git\n    cd pyyeti\n    python -m build -n\n    cd dist\n    python -m pip install <filename>.whl\n\nNote that for the C version of the rainflow cycle counter, you also\nneed a C compiler installed. However, the speed of the pure Python\nversion is on par with the C version if you have Numba installed. In\nfact, the C version may be removed in the future after making Numba a\nrequired dependency.\n\n\n## Documentation\n\npyYeti documentation is here:\n\n   http://pyyeti.readthedocs.org/\n\n\n## Tutorials\n\nThe documentation contains several tutorials in the documentation.\nThese are also available (in their original form) as Jupyter\nnotebooks:\n\n   https://github.com/twmacro/pyyeti/tree/master/docs/tutorials\n\n\n## License\n\nBSD. See [LICENSE.txt](LICENSE.txt)\n\n\n## Contributing to pyYeti\n\nContributions are much appreciated. Bug reports, documentation\nupdates, feature requests, and code enhancements are all great\nways to contribute.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Tools mostly related to structural dynamics",
    "version": "1.4.5",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1ef4bddbb47a2a91ce5a279ddf69f71b80c81a98bcdab819c667eea3f1e0d40",
                "md5": "745e100deaa142f757398ba36dea55d0",
                "sha256": "082570602ad2090d8aafb43df8dd527299f631b40859827dc6459519e8119deb"
            },
            "downloads": -1,
            "filename": "pyyeti-1.4.5.tar.gz",
            "has_sig": false,
            "md5_digest": "745e100deaa142f757398ba36dea55d0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 6276107,
            "upload_time": "2025-07-09T22:49:57",
            "upload_time_iso_8601": "2025-07-09T22:49:57.163583Z",
            "url": "https://files.pythonhosted.org/packages/a1/ef/4bddbb47a2a91ce5a279ddf69f71b80c81a98bcdab819c667eea3f1e0d40/pyyeti-1.4.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-09 22:49:57",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pyyeti"
}
        
Elapsed time: 2.47299s