stardis

Perform coupled heat transfer calculations
git clone git://git.meso-star.fr/stardis.git
Log | Files | Refs | README | LICENSE

commit c307c5bf34616c8b777509be12b1aee35040b2a5
parent ecca217757b0496416fa757a4f0fcbb583ac6bf2
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Mon, 14 Mar 2022 10:08:40 +0100

Merge branch 'release_0.8' into develop

Diffstat:
MREADME.md | 17++++++++++++++++-
Mcmake/CMakeLists.txt | 4++--
2 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md @@ -22,7 +22,10 @@ It also depends on the [star-stl](https://gitlab.com/meso-star/star-stl) and [stardis-solver](https://gitlab.com/meso-star/stardis-solver) libraries as well as on the [OpenMP](http://www.openmp.org) 2.0 specification to -parallelize its computations. +parallelize its computations. It may depend on +[OpenMPI](https://www.open-mpi.org/) 2.0 if distributed memory parallelism +is enabled via the `ENABLE_MPI` variable of the CMake file. + First ensure that CMake and a C compiler are installed on your system. @@ -33,6 +36,18 @@ variable the install directories of its dependencies. ## Release notes +## Version 0.8 + +- Add a new option to support non-linear radiative transfer computations. +- Changes in input file's format to support non-linear radiative transfer by + adding reference temperatures on interfaces. +- Add optional support for MPI (must be enabled at compile time, default is OFF). +- Change random number generator type to use Threefry. +- Change the format of binary Green files. A new public header file is now + installed that describes all types involved in binary Green files. +- Fix a crash on an exit-on-error execution path. +- Fix parsing of command-line options. + ### Version 0.7.2 Fix the binary file format of the green function: the fileformat has been diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -62,8 +62,8 @@ configure_file(${SDIS_SOURCE_DIR}/../doc/stardis.1.txt.in ${CMAKE_CURRENT_BINARY_DIR}/doc/stardis.1.txt @ONLY) set(SDIS_VERSION_MAJOR 0) -set(SDIS_VERSION_MINOR 7) -set(SDIS_VERSION_PATCH 2) +set(SDIS_VERSION_MINOR 8) +set(SDIS_VERSION_PATCH 0) set(SDIS_VERSION ${SDIS_VERSION_MAJOR}.${SDIS_VERSION_MINOR}.${SDIS_VERSION_PATCH}) configure_file(${SDIS_SOURCE_DIR}/stardis-default.h.in