Skip to content
Snippets Groups Projects
Commit 123c6dd8 authored by Lambert Theisen's avatar Lambert Theisen
Browse files

Update to version 1.2

parent baf324f1
No related branches found
No related tags found
1 merge request!6Version 1.2
Pipeline #242819 passed
Change log Change log
---------- ----------
1.2 (2020-02-17)
~~~~~~~~~~~~~~~~
- Change system:
- Change RHS for energy coupling consistency
- Add delta term
- Add body force
- Add div(u) coupling to energy balance (also change RHS for elimination)
- Rename deltas and chi_tilde
- Add body froce driven channel flow
- Add P2P1P1P2P1 R13 validation case
- Revert to MUMPS solver
1.1 (2019-12-15) 1.1 (2019-12-15)
~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~
......
...@@ -4,15 +4,13 @@ ...@@ -4,15 +4,13 @@
.. inclusion-marker .. inclusion-marker
fenicsR13 fenicsR13: A Tensorial Mixed Finite Element Solver for the Linear R13 Equations Using the FEniCS Computing Platform
================================================================================ ================================================================================
|pipeline| |coverage| |version| |website| |pipeline| |coverage| |version| |website|
``#extendedGasDynamics`` ``#using`` ``#FEniCS`` ``#extendedGasDynamics`` ``#using`` ``#FEniCS``
Repository for FEM simulations of non-equilibrium gas dynamics based on the Regularized 13-Moment-Equations for rarefied and micro-flows in 2D.
Installation Installation
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
...@@ -261,6 +259,7 @@ Create new version tag ...@@ -261,6 +259,7 @@ Create new version tag
2. Adapt version in `conf.py` for docs and `setup.py` for package 2. Adapt version in `conf.py` for docs and `setup.py` for package
3. Change badge in ``README.rst`` 3. Change badge in ``README.rst``
4. Change version in program information printing 4. Change version in program information printing
5. Build new Docker container
Gitlab CI Setup Gitlab CI Setup
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
...@@ -368,10 +367,6 @@ Contact ...@@ -368,10 +367,6 @@ Contact
| Lehrstuhl für Mathematik (MathCCES) | Lehrstuhl für Mathematik (MathCCES)
| RWTH Aachen University | RWTH Aachen University
| mt@mathcces.rwth-aachen.de | mt@mathcces.rwth-aachen.de
:Context:
| Masterthesis Computational Engineering Science
| RWTH Aachen University
| *Simulation of Non-Equilibrium Gas Flows Using the FEniCS Computing Platform*
.. |pipeline| image:: https://git.rwth-aachen.de/lamboo/fenicsR13/badges/master/pipeline.svg .. |pipeline| image:: https://git.rwth-aachen.de/lamboo/fenicsR13/badges/master/pipeline.svg
:target: https://git.rwth-aachen.de/lamboo/fenicsR13/commits/master :target: https://git.rwth-aachen.de/lamboo/fenicsR13/commits/master
...@@ -381,7 +376,7 @@ Contact ...@@ -381,7 +376,7 @@ Contact
:target: https://git.rwth-aachen.de/lamboo/fenicsR13/pipelines :target: https://git.rwth-aachen.de/lamboo/fenicsR13/pipelines
:alt: Test coverage :alt: Test coverage
.. |version| image:: https://img.shields.io/badge/version-v1.1-blue.svg .. |version| image:: https://img.shields.io/badge/version-1.2-blue.svg
:target: https://git.rwth-aachen.de/lamBOO/fenicsR13/-/tags :target: https://git.rwth-aachen.de/lamBOO/fenicsR13/-/tags
:alt: Documentation Website :alt: Documentation Website
......
...@@ -21,11 +21,11 @@ sys.path.insert(0, os.path.abspath('../examples')) ...@@ -21,11 +21,11 @@ sys.path.insert(0, os.path.abspath('../examples'))
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
project = 'fenicsR13' project = 'fenicsR13'
copyright = '2019' copyright = '2020'
author = 'Lambert Theisen' author = 'Lambert Theisen'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '1.1' release = '1.2'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
......
...@@ -28,7 +28,7 @@ def print_information(): ...@@ -28,7 +28,7 @@ def print_information():
.. code-block:: text .. code-block:: text
-> Version: v1.1 -> Version: 1.2
-> Contact: Lambert Theisen <lambert.theisen@rwth-aachen.de> -> Contact: Lambert Theisen <lambert.theisen@rwth-aachen.de>
-> Contact: Manuel Torrilhon <mt@mathcces.rwth-aachen.de> -> Contact: Manuel Torrilhon <mt@mathcces.rwth-aachen.de>
-> Repository: <https://git.rwth-aachen.de/lamBOO/fenicsR13> -> Repository: <https://git.rwth-aachen.de/lamBOO/fenicsR13>
...@@ -40,7 +40,7 @@ def print_information(): ...@@ -40,7 +40,7 @@ def print_information():
|_| \___|_| |_|_|\___|___/_| \_\_|____/ |_| \___|_| |_|_|\___|___/_| \_\_|____/
""" """
print(r"""-> Version: v1.1 print(r"""-> Version: 1.2
-> Contact: Lambert Theisen <lambert.theisen@rwth-aachen.de> -> Contact: Lambert Theisen <lambert.theisen@rwth-aachen.de>
-> Contact: Manuel Torrilhon <mt@mathcces.rwth-aachen.de> -> Contact: Manuel Torrilhon <mt@mathcces.rwth-aachen.de>
-> Repository: <https://git.rwth-aachen.de/lamBOO/fenicsR13> -> Repository: <https://git.rwth-aachen.de/lamBOO/fenicsR13>
......
...@@ -8,7 +8,7 @@ def readme(): # pylint: disable=missing-function-docstring ...@@ -8,7 +8,7 @@ def readme(): # pylint: disable=missing-function-docstring
setup( setup(
name="fenicsR13", name="fenicsR13",
version="1.1", version="1.2",
description="FEniCS (FEM) Solver for Non.-Eq.-Gases Based on R13 Equations", description="FEniCS (FEM) Solver for Non.-Eq.-Gases Based on R13 Equations",
long_description=readme(), long_description=readme(),
url="https://git.rwth-aachen.de/lamBOO/fenicsR13", url="https://git.rwth-aachen.de/lamBOO/fenicsR13",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment