https://github.com/petrkryslucsd/meshsteward.jl
Manages finite element meshes powered by MeshCore.jl
https://github.com/petrkryslucsd/meshsteward.jl
finite-element-analysis mesh-generation mesh-management mesh-processing
Last synced: 4 months ago
JSON representation
Manages finite element meshes powered by MeshCore.jl
- Host: GitHub
- URL: https://github.com/petrkryslucsd/meshsteward.jl
- Owner: PetrKryslUCSD
- License: mit
- Created: 2020-05-26T15:57:51.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-01T16:33:42.000Z (10 months ago)
- Last Synced: 2025-02-14T08:47:44.887Z (4 months ago)
- Topics: finite-element-analysis, mesh-generation, mesh-management, mesh-processing
- Language: Julia
- Size: 487 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](http://www.repostatus.org/#active)
[](https://github.com/PetrKryslUCSD/MeshSteward.jl/actions)
[](https://codecov.io/gh/PetrKryslUCSD/MeshSteward.jl)
[](https://petrkryslucsd.github.io/MeshSteward.jl/dev)# MeshSteward.jl
Manages finite element meshes powered by [`MeshCore.jl`](https://github.com/PetrKryslUCSD/MeshCore.jl).
## Installation
This release is for Julia 1.5.
The package is registered: doing
```
]add MeshSteward
```
is enough.Depends on: [`MeshCore`](https://github.com/PetrKryslUCSD/MeshCore.jl).
## Using
The user can either use/import individual functions from `MeshSteward` like so:
```
using MeshSteward: Mesh, attach!
```
or all exported symbols maybe made available in the user's context as
```
using MeshSteward.Exports
```## Learning
Please refer to the tutorials in the package [`MeshTutor.jl`](https://github.com/PetrKryslUCSD/MeshTutor.jl).
## News
- 12/15/2020: Tested with Julia 1.6.
- 07/06/2020: Exports have been added to facilitate use of the library.
- 06/17/2020: Key the stored relations with a tuple consisting of the code and a
string tag.
- 05/26/2020: First version.