stardis-solver

Solve coupled heat transfers
git clone git://git.meso-star.fr/stardis-solver.git
Log | Files | Refs | README | LICENSE

commit 37bc409ec6749656aad716584c19eaf51ab4de6b
parent 1cebcb1d51334e129c2954297a3a6be4738f7642
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Wed, 11 Sep 2024 11:58:31 +0200

Merge branch 'release_0.16.1' into develop

Diffstat:
MREADME.md | 11+++++++++++
Mconfig.mk | 2+-
2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -158,6 +158,17 @@ Edit config.mk as needed, then run: ## Release notes + +### Version 0.16.1 + +- Corrected net flux calculation on surfaces with several Robin boundary + conditions. Depending on the configuration, such a calculation could + be impossible and return an error. +- Improve the performance of external flux calculations by avoiding the + need to calculate the contribution of external flux for surfaces with + zero emissivity. +- Mitigate numerical errors when sampling radiative paths. + ### Version 0.16 #### Add support for custom sampling of solid paths diff --git a/config.mk b/config.mk @@ -1,6 +1,6 @@ VERSION_MAJOR = 0 VERSION_MINOR = 16 -VERSION_PATCH = 0 +VERSION_PATCH = 1 VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH) PREFIX = /usr/local