FEM I/O Tool
Project description
Femio
The FEM I/O + mesh processing tool.
- Documentation: https://ricosjp.github.io/femio/
Femio can:
- Read FEM data including analysis results from various formats
- Perform mesh processing
- Write FEM data to various formats
How to install
pip install femio
How to use
Usage could be something similar to this:
import femio
# Read FEM data of files
fem_data = femio.FEMData.read_files(file_type='ucd', file_names=['mesh.inp'])
# Read FEM data in a directory
fem_data = femio.FEMData.read_directory(file_type='ucd', 'directory/name')
# Access FEM data
print(fem_data.nodes.ids, fem_data.entity.nodes.data) # data means node position here
print(fem_data.elements.ids, fem_data.entity.elements.data) # data means node ids here
print(fem_data.nodal_data['DISPLACEMENT'].ids, fem_data.entity.nodal_data['DISPLACEMENT']).data
# Output FEM data to a file format different from the input
fem_data.write(file_type='stl')
Supported file types:
- 'fistr': FrontISTR file format
- 'obj': Wavefront .obj file format
- 'stl': STereoLithography file format
- 'ucd': AVS UCD old format
- 'vtk': VTK format
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file femio-0.3.2.dev202012271411-py3-none-any.whl.
File metadata
- Download URL: femio-0.3.2.dev202012271411-py3-none-any.whl
- Upload date:
- Size: 60.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.4 CPython/3.8.5 Linux/4.18.0-240.1.1.el8_3.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd4cfd57269de2cc28adac59cb2ed29aaa84e501664f60ba9e5fe6b6d7ab9308
|
|
| MD5 |
8fc85fc987ee6f5873bef7fe2eab8345
|
|
| BLAKE2b-256 |
c3bd8e9cc8ae395f2f91e725797185040232bf352aa7612df6f0204a61151eb0
|