Go to file
Magnus Ulimoen 091076a9ad Neon supports fma 2021-04-18 23:20:08 +02:00
euler Split into components for subcomputation 2021-03-30 22:19:04 +02:00
gridgeneration Bump ndarray 2021-03-16 19:03:35 +01:00
heat-equation Move integrate to separate crate 2021-03-22 17:49:35 +01:00
maxwell Move integrate to separate crate 2021-03-22 17:49:35 +01:00
multigrid Introduce Diff type for euler 2021-03-30 18:46:28 +02:00
sbp Add Metrics iterator 2021-03-26 16:27:45 +01:00
shallow_water Move integrate to separate crate 2021-03-22 17:49:35 +01:00
utils Neon supports fma 2021-04-18 23:20:08 +02:00
webfront Replace FastFloat with mul_add 2021-03-23 19:21:38 +01:00
.gitignore add .gitignores 2020-02-19 21:51:48 +01:00
Cargo.toml Move FastFloat to separate crate (archival) 2021-03-23 19:36:44 +01:00
README.md Update READMEs 2020-09-19 14:41:02 +02:00

README.md

What is this?

This a collection of Summation By Parts operators which can be used for solving partial differential equations. The operators has special properties that puts extra emphasis on boundary treatments, ensuring stable (energy bounded) and accurate (4th and 8th order) solutions to some PDEs.

This is a Rust reimplementation reimplementation of code written during my Masters Thesis, made more general and easier to apply to more equations and cases.

Multigrid

This is the frontend for the Compressible Euler Equations, allowing solving the equations on curvilinear multi-block domains. The solver can be run in parallel using a block-per-thread approach (utilising rayon).

Webfront

This is a test at combining rust+WASM+WebGL+SBP. The prototypes can be seen here (Maxwell solver), here (Nonlinear Euler solver), and here (shallow water equations).

SBP

The main portion of the library, composed of Traits for the operators, and implementation for some common operators in literature.