https://github.com/petrkryslucsd/elfel.jl
Extensible library for finite element programming
https://github.com/petrkryslucsd/elfel.jl
finite-element-methods methods mixed
Last synced: 3 months ago
JSON representation
Extensible library for finite element programming
- Host: GitHub
- URL: https://github.com/petrkryslucsd/elfel.jl
- Owner: PetrKryslUCSD
- License: mit
- Created: 2020-05-14T15:54:02.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-07T21:54:21.000Z (about 4 years ago)
- Last Synced: 2025-02-14T08:47:46.630Z (3 months ago)
- Topics: finite-element-methods, methods, mixed
- Language: Julia
- Homepage:
- Size: 1.04 MB
- Stars: 14
- 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/Elfel.jl/actions)
[](https://codecov.io/gh/PetrKryslUCSD/Elfel.jl)
[](https://petrkryslucsd.github.io/Elfel.jl/dev)# Elfel.jl: Extensible library for finite element methods
**elfel**
G. *adjective*. different, like something else, unique, unparalled## Introduction
This package provides support for the development of Finite Element Method applications, especially in continuum mechanics. Mixed methods with cooperating finite element spaces are supported. High performance is one of the focus points. Check out the [tutorials](https://petrkryslucsd.github.io/Elfel.jl/dev/tutorials/tutorials.html#Tutorials) to get a feel for the functionality of this package.
## Dependencies
The library relies on mesh support from the following suite of small mesh-management packages: [`MeshCore`](https://github.com/PetrKryslUCSD/MeshCore.jl), [`MeshSteward`](https://github.com/PetrKryslUCSD/MeshSteward.jl).
## Usage
Clone the repository, and execute
```
using Pkg; Pkg.activate("."); Pkg.instantiate()
```
in the `Elfel` folder.The user can either use/import individual functions from `Elfel` like so:
```
using Elfel.FElements: FEH1_T6, FEH1_T3, refshape, Jacobian
```
or all exported symbols maybe made available in the user's context as
```
using Elfel.Exports
```The `examples` folder can be explored by simply running the files with `include()`.
## News
- 07/15/2020: Implemented geometry carrier for finite elements that are not isoparametric.
- 07/11/2020: Tutorial structure added.
- 07/06/2020: Exports have been added to facilitate use of the library.
- 07/05/2020: Vector finite element spaces tested.
- 06/26/2020: L2 elements implemented, Stokes problem example.
- 06/19/2020: Example of a mixed method for the discrete Stokes problem added.
- 05/25/2020: Firmed up the concept of iterators for access to element and quadrature point data.