commit 132fd15aa5393eb27faf9f83a23d3ad46bfe1080 parent 4a1dbab2e0dffebcacdefb996752a03abe449d94 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Fri, 27 Aug 2021 15:02:52 +0200 Merge branch 'release_0.8' into develop Diffstat:
| M | README.md | | | 12 | ++++++++++++ |
| M | cmake/CMakeLists.txt | | | 2 | +- |
2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md @@ -76,6 +76,18 @@ informations on CMake. ## Release notes +### Version 0.8 + +- Adds support for a thin lens camera model and an orthographic camera model + for combustion and atmosphere modes. +- Updates the size of a tile from 32x32 pixels to 8x8 pixels. A tile is a + block of pixels rendered by a thread. However, a size of 32x32 pixels could + be too large when rendering on several dozen threads: the image definition + could be insufficient to give tiles to all threads. +- Fixes the calculation of shortwave radiance by `htrdr-combustion` and the + calculation of longwave radiance by `htrdr-atmosphere`. At each scattering + position, the range of the traced ray could be incorrect. + ### Version 0.7 #### Adds the simulation of radiative transfer in combustion media diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -23,7 +23,7 @@ set(HTRDR_SOURCE_DIR ${PROJECT_SOURCE_DIR}/../src) set(HTRDR_BUILD_DIR ${CMAKE_CURRENT_BINARY_DIR}) set(VERSION_MAJOR 0) -set(VERSION_MINOR 7) +set(VERSION_MINOR 8) set(VERSION_PATCH 0) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})