An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/latest/active.svg)](http://www.repostatus.org/#active)
[![Build status](https://github.com/PetrKryslUCSD/MeshSteward.jl/workflows/CI/badge.svg)](https://github.com/PetrKryslUCSD/MeshSteward.jl/actions)
[![Codecov](https://codecov.io/gh/PetrKryslUCSD/MeshSteward.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/PetrKryslUCSD/MeshSteward.jl)
[![Latest documentation](https://img.shields.io/badge/docs-latest-blue.svg)](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.