stardis-solver

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

commit 3e31f2d44e99c37db5986cb4e4583a6fc6331b68
parent 8cd65b39870900e06ef77c25af924e29ecc4f5fa
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Thu, 17 Sep 2020 14:03:02 +0200

Merge branch 'release_0.10' into develop

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

diff --git a/README.md b/README.md @@ -25,7 +25,22 @@ variable the install directories of its dependencies. ## Release notes -### Version 0.9.0 +### Version 0.10 + +- Add support of green function [de]serialization. The + `sdis_green_function_write` function serializes the green function into a + stream while the `sdis_green_function_create_from_stream` function + deserialize it. Note that the scene used to deserialize the green function + must be the same of the one used to estimate it: the media and the interfaces + have to be created in the same order, the scene geometry must be the same, + etc. +- Add the `sdis_scene_find_closest_point` function: search the point onto the + scene geometry that is the closest of the submitted position. +- Add the `sdis_compute_power` function that evaluates the power of a medium. +- Update the solver: the time of the sampled path is now rewind on solid + reinjection. + +### Version 0.9 - Update the API of the solve functions: the parameters of the simulation are now grouped into a unique data structure rather than separately submitted as diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -56,7 +56,7 @@ rcmake_append_runtime_dirs(_runtime_dirs # Configure and define targets ############################################################################### set(VERSION_MAJOR 0) -set(VERSION_MINOR 9) +set(VERSION_MINOR 10) set(VERSION_PATCH 0) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})