odb-plotter


Nameodb-plotter JSON
Version 0.8.1 PyPI version JSON
download
home_page
SummaryPython3 API for Abaqus .odb Files and related Command Line Visualization Tool. Focused on Additive Manufacturing Thermal Transfer
upload_time2023-11-30 21:18:19
maintainer
docs_urlNone
author
requires_python
licenseMIT License Copyright (c) 2023 Matthew W. Priddy Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords abaqus abq fea odb waam wa-ded visualization
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ODB Plotter

## Constraints:
ODB Plotter is being developed by [CMML](https://www.cmml.me.msstate.edu), and as such has a focus on Additive Manufacturing and Temperature Data.

## Install with pip
```shell
pip install odb-plotter["all"]
```

## Install in headless mode (data processing only)
```shell
pip install odb-plotter
```

## Run the cli with python
```shell
python -m odbp
```

## Or import to use the api
```python
from odbp import Odb
...
```

## ODB Plotter Design Goals

### I intend for this project to serve two purposes:
- First, implement an extensible, flexible api for accessing data within .odb files or .hdf5 files with odb data
- Second, implement a user-friendly, sane-defaults cli to allow for quick data extraction, manipulation, and visualization with no hassle

## Changelog
* Before 0.5.0: Did not have the Changelog here.
* 0.5.0: API Updates and better dataframe filtering
    * 0.5.1: Implement new system information (pypi tags, this changelog)
    * 0.5.2: Returning support to Python 3.8+ (type hinting)
    * 0.5.3: Patching conversion bugs
    * 0.5.4: Parametrize number of cpus for testing
* 0.6.0: Extractor improvements, ODB interface tools (iteration, receiving ODB data), re-implementation of basic 3D plots over time (including melt-pool plots). Created two-dimensional plotting capabilities
    * 0.6.1: Update notices if pyvista isn't installed
    * 0.6.2: Improve data extraction for plotting. Ensure that plotting doesn't fork-bomb
    * 0.6.3: Actually filtering 3D plots.
    * 0.6.4: Fixing Python2 Error Reporting
    * 0.6.5: Fixing Python2 Error Reporting in more places
    * 0.6.6: Fixing conversion problems
    * 0.6.7: Implementing tools for .odbs with coords in only some steps or tools for frame steps with different sizes
* 0.7.0: Improve user settings, parameterization, metadata. Let users select plotting colors, keep metadata of nodesets or spatial, thermal, temporal bounds within the .hdf5. Reqwrite CLI to use Python's cmd module and pyreadline/GNU readline.
    * 0.7.1: Data Output fixes, sane defaults, fixing typos, improved plotting, including 2D and better regard to time ranges.
* 0.8.0: Updates to how coordinates are stored in .hdf5 files.
    * 0.8.1: Updating color backgrounds for 3D images
* Upcoming:
    * 0.8.*: Updates to text and sizing of plots
    * 1.0.0: Final bug-fixing, type checking, bounds checking, etc. Hopefully coinciding with (or following) a publication.
    * 1.1.0: Improve pyvista functionality: views, gifs, non-interactive image saving, leave the viewer.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "odb-plotter",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "Clark Hensley <clarkhensley@duck.com>",
    "keywords": "abaqus,abq,fea,odb,waam,wa-ded,visualization",
    "author": "",
    "author_email": "Clark Hensley <clarkhensley@duck.com>",
    "download_url": "https://files.pythonhosted.org/packages/9e/a4/125d94806114a0e2d5324ad40395a72b264ce124e64228e628e255435252/odb-plotter-0.8.1.tar.gz",
    "platform": null,
    "description": "# ODB Plotter\n\n## Constraints:\nODB Plotter is being developed by [CMML](https://www.cmml.me.msstate.edu), and as such has a focus on Additive Manufacturing and Temperature Data.\n\n## Install with pip\n```shell\npip install odb-plotter[\"all\"]\n```\n\n## Install in headless mode (data processing only)\n```shell\npip install odb-plotter\n```\n\n## Run the cli with python\n```shell\npython -m odbp\n```\n\n## Or import to use the api\n```python\nfrom odbp import Odb\n...\n```\n\n## ODB Plotter Design Goals\n\n### I intend for this project to serve two purposes:\n- First, implement an extensible, flexible api for accessing data within .odb files or .hdf5 files with odb data\n- Second, implement a user-friendly, sane-defaults cli to allow for quick data extraction, manipulation, and visualization with no hassle\n\n## Changelog\n* Before 0.5.0: Did not have the Changelog here.\n* 0.5.0: API Updates and better dataframe filtering\n    * 0.5.1: Implement new system information (pypi tags, this changelog)\n    * 0.5.2: Returning support to Python 3.8+ (type hinting)\n    * 0.5.3: Patching conversion bugs\n    * 0.5.4: Parametrize number of cpus for testing\n* 0.6.0: Extractor improvements, ODB interface tools (iteration, receiving ODB data), re-implementation of basic 3D plots over time (including melt-pool plots). Created two-dimensional plotting capabilities\n    * 0.6.1: Update notices if pyvista isn't installed\n    * 0.6.2: Improve data extraction for plotting. Ensure that plotting doesn't fork-bomb\n    * 0.6.3: Actually filtering 3D plots.\n    * 0.6.4: Fixing Python2 Error Reporting\n    * 0.6.5: Fixing Python2 Error Reporting in more places\n    * 0.6.6: Fixing conversion problems\n    * 0.6.7: Implementing tools for .odbs with coords in only some steps or tools for frame steps with different sizes\n* 0.7.0: Improve user settings, parameterization, metadata. Let users select plotting colors, keep metadata of nodesets or spatial, thermal, temporal bounds within the .hdf5. Reqwrite CLI to use Python's cmd module and pyreadline/GNU readline.\n    * 0.7.1: Data Output fixes, sane defaults, fixing typos, improved plotting, including 2D and better regard to time ranges.\n* 0.8.0: Updates to how coordinates are stored in .hdf5 files.\n    * 0.8.1: Updating color backgrounds for 3D images\n* Upcoming:\n    * 0.8.*: Updates to text and sizing of plots\n    * 1.0.0: Final bug-fixing, type checking, bounds checking, etc. Hopefully coinciding with (or following) a publication.\n    * 1.1.0: Improve pyvista functionality: views, gifs, non-interactive image saving, leave the viewer.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 Matthew W. Priddy  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Python3 API for Abaqus .odb Files and related Command Line Visualization Tool. Focused on Additive Manufacturing Thermal Transfer",
    "version": "0.8.1",
    "project_urls": {
        "Bug Reports": "https://www.github.com/Computational-Mechanics-Materials-Lab/ODBPlotter/issues",
        "Homepage": "https://www.cmml.me.msstate.edu",
        "Source": "https://www.github.com/Computational-Mechanics-Materials-Lab/ODBPlotter"
    },
    "split_keywords": [
        "abaqus",
        "abq",
        "fea",
        "odb",
        "waam",
        "wa-ded",
        "visualization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f870a43572bd5749d6ab180141b48a0080734d8c805d57e3ce6a591333cc3149",
                "md5": "b2a3be922b3416048e47ba6f46b7b029",
                "sha256": "d9f794d68529aa2c843776d2368f62d218cb9e5ee66cc19d0e012a60e23192df"
            },
            "downloads": -1,
            "filename": "odb_plotter-0.8.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b2a3be922b3416048e47ba6f46b7b029",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 40290,
            "upload_time": "2023-11-30T21:18:17",
            "upload_time_iso_8601": "2023-11-30T21:18:17.750106Z",
            "url": "https://files.pythonhosted.org/packages/f8/70/a43572bd5749d6ab180141b48a0080734d8c805d57e3ce6a591333cc3149/odb_plotter-0.8.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ea4125d94806114a0e2d5324ad40395a72b264ce124e64228e628e255435252",
                "md5": "cd068e0ba9ef18bc383ec8ce63f452d5",
                "sha256": "db9d3797155e9314c54a6136657e7363c3aebd05e6915e6d1ec21d40b2b87df3"
            },
            "downloads": -1,
            "filename": "odb-plotter-0.8.1.tar.gz",
            "has_sig": false,
            "md5_digest": "cd068e0ba9ef18bc383ec8ce63f452d5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 34526,
            "upload_time": "2023-11-30T21:18:19",
            "upload_time_iso_8601": "2023-11-30T21:18:19.720957Z",
            "url": "https://files.pythonhosted.org/packages/9e/a4/125d94806114a0e2d5324ad40395a72b264ce124e64228e628e255435252/odb-plotter-0.8.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-30 21:18:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Computational-Mechanics-Materials-Lab",
    "github_project": "ODBPlotter",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "odb-plotter"
}
        
Elapsed time: 0.15642s