From 38700f2968726bb6d6a7802dc9e7968edfd7d6e7 Mon Sep 17 00:00:00 2001 From: Max Luebke Date: Fri, 12 Aug 2022 19:03:31 +0200 Subject: [PATCH] Add Changelog --- Changelog.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Changelog.md diff --git a/Changelog.md b/Changelog.md new file mode 100644 index 0000000..7035502 --- /dev/null +++ b/Changelog.md @@ -0,0 +1,12 @@ + + +## v0.1 (2022-08-09) + +* Basic solving of diffusion problems with + - 1D regular and rectangular grids using BTCS scheme and Eigen SparseLU solver + - 2D regular and rectangular grids using 2D-ADI-BTCS scheme and Eigen SparseLU solver +* Definition of boundary conditions via class `BTCSBoundaryCondition` on ghost nodes +* Boundaries types `CLOSED` and `CONSTANT` cells are provided for diffusion problem solving +* Software testing of both `BTCSDiffusion` and `BTCSBoundaryCondition` classes +* Description of both BTCS and 2D-ADI-BTCS schemes are provided in `doc` +* Example applications are attached in `app` subdirectory