From e644a60cf9e47a762b681964fed62839e33d698d Mon Sep 17 00:00:00 2001 From: Lambert Theisen <lambert.theisen@rwth-aachen.de> Date: Sun, 1 Nov 2020 13:39:27 +0100 Subject: [PATCH] Update to version 1.4 --- CHANGELOG.rst | 17 ++++++++++++++++- README.rst | 2 +- docs/conf.py | 2 +- fenicsR13/fenicsR13.py | 4 ++-- setup.py | 2 +- 5 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 61c07e4..282052a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,10 +1,25 @@ Change log ---------- +1.4 (2020-11-01) +~~~~~~~~~~~~~~~~ + +- Add convergence study for Knudsen pump +- Add thermal edge flow example + - With SLURM script and Amazon EC2 setup script +- Add timing reports in debug log for assemble, solve +- Add average velocity postproccessing +- Update docker-compose by: + - Remove Git binding + - Increase SHM size for clusters +- Improve geoToH5 by using unique tmp names + - This allows for parallel execution +- Add feature to evaluate arbitrary line integrals + 1.3 (2020-08-18) ~~~~~~~~~~~~~~~~ -- Add option to use Garlerkign Least Squares (GLS) stabilization +- Add option to use Garlerkin Least Squares (GLS) stabilization - Allow for different chi_tilde on boundaries - Add option for multiple mesh regions: - Allows for different Knudsen numbers in regions diff --git a/README.rst b/README.rst index 58fc693..cba9f5e 100644 --- a/README.rst +++ b/README.rst @@ -395,7 +395,7 @@ Contact :target: https://git.rwth-aachen.de/lamboo/fenicsR13/pipelines :alt: Test coverage -.. |version| image:: https://img.shields.io/badge/version-1.3-blue.svg +.. |version| image:: https://img.shields.io/badge/version-1.4-blue.svg :target: https://git.rwth-aachen.de/lamBOO/fenicsR13/-/tags :alt: Documentation Website diff --git a/docs/conf.py b/docs/conf.py index 5d28ccc..9ea5511 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ copyright = '2020' author = 'Lambert Theisen' # The full version, including alpha/beta/rc tags -release = '1.3' +release = '1.4' # -- General configuration --------------------------------------------------- diff --git a/fenicsR13/fenicsR13.py b/fenicsR13/fenicsR13.py index 880b324..45ef705 100755 --- a/fenicsR13/fenicsR13.py +++ b/fenicsR13/fenicsR13.py @@ -29,7 +29,7 @@ def print_information(): .. code-block:: text - -> Version: 1.3 + -> Version: 1.4 -> Contact: Lambert Theisen <lambert.theisen@rwth-aachen.de> -> Contact: Manuel Torrilhon <mt@mathcces.rwth-aachen.de> -> Repository: <https://git.rwth-aachen.de/lamBOO/fenicsR13> @@ -41,7 +41,7 @@ def print_information(): |_| \___|_| |_|_|\___|___/_| \_\_|____/ """ - print(r"""-> Version: 1.3 + print(r"""-> Version: 1.4 -> Contact: Lambert Theisen <lambert.theisen@rwth-aachen.de> -> Contact: Manuel Torrilhon <mt@mathcces.rwth-aachen.de> -> Repository: <https://git.rwth-aachen.de/lamBOO/fenicsR13> diff --git a/setup.py b/setup.py index 046643b..113e27f 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def readme(): # pylint: disable=missing-function-docstring setup( name="fenicsR13", - version="1.3", + version="1.4", description="FEniCS (FEM) Solver for Non.-Eq.-Gases Based on R13 Equations", long_description=readme(), url="https://git.rwth-aachen.de/lamBOO/fenicsR13", -- GitLab