pyyeti


Namepyyeti JSON
Version 1.4.1 PyPI version JSON
download
home_pagehttp://github.com/twmacro/pyyeti/
SummaryTools mostly related to structural dynamics
upload_time2024-03-30 17:45:59
maintainerNone
docs_urlNone
authorTim Widrick
requires_pythonNone
licenseBSD
keywords
VCS
bugtrack_url
requirements numpy scipy matplotlib pandas xlsxwriter h5py packaging
Travis-CI
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": "http://github.com/twmacro/pyyeti/",
    "name": "pyyeti",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Tim Widrick",
    "author_email": "twmacro@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/e6/c2/a7ee8fc2fe1b0c39b4ddff0b2126979c3f4eb7353c980b101026deb21b82/pyyeti-1.4.1.tar.gz",
    "platform": "any",
    "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": "BSD",
    "summary": "Tools mostly related to structural dynamics",
    "version": "1.4.1",
    "project_urls": {
        "Homepage": "http://github.com/twmacro/pyyeti/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6c2a7ee8fc2fe1b0c39b4ddff0b2126979c3f4eb7353c980b101026deb21b82",
                "md5": "4b3083133427edeb880e4006fbe69269",
                "sha256": "1c1153d29aa4ab2c0669877d95da095211eceea7e47e452e013cd5f652858a34"
            },
            "downloads": -1,
            "filename": "pyyeti-1.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "4b3083133427edeb880e4006fbe69269",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 736135,
            "upload_time": "2024-03-30T17:45:59",
            "upload_time_iso_8601": "2024-03-30T17:45:59.008340Z",
            "url": "https://files.pythonhosted.org/packages/e6/c2/a7ee8fc2fe1b0c39b4ddff0b2126979c3f4eb7353c980b101026deb21b82/pyyeti-1.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-30 17:45:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "twmacro",
    "github_project": "pyyeti",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "scipy",
            "specs": []
        },
        {
            "name": "matplotlib",
            "specs": []
        },
        {
            "name": "pandas",
            "specs": []
        },
        {
            "name": "xlsxwriter",
            "specs": []
        },
        {
            "name": "h5py",
            "specs": []
        },
        {
            "name": "packaging",
            "specs": []
        }
    ],
    "test_requirements": [
        {
            "name": "build",
            "specs": []
        },
        {
            "name": "pytest",
            "specs": []
        },
        {
            "name": "pytest-cov",
            "specs": []
        }
    ],
    "lcname": "pyyeti"
}
        
Elapsed time: 0.30152s