atrstm

Load and structure a combustion gas mixture
git clone git://git.meso-star.fr/atrstm.git
Log | Files | Refs | README | LICENSE

commit 723a1a935d3e82baf85f40c886b3491ca74c399d
parent 1006f09d2fd57bf421096fc0dc82e8298a4a69d3
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Mon,  9 Jan 2023 10:10:44 +0100

Merge branch 'release_0.0.1' into develop

Diffstat:
MREADME.md | 11++++++++++-
Mcmake/CMakeLists.txt | 4++--
Msrc/atrstm.c | 2+-
Msrc/atrstm.h | 2+-
Msrc/atrstm_c.h | 2+-
Msrc/atrstm_cache.c | 2+-
Msrc/atrstm_cache.h | 2+-
Msrc/atrstm_dump_svx_octree.c | 2+-
Msrc/atrstm_log.c | 2+-
Msrc/atrstm_log.h | 2+-
Msrc/atrstm_partition.c | 2+-
Msrc/atrstm_partition.h | 2+-
Msrc/atrstm_radcoefs.c | 2+-
Msrc/atrstm_radcoefs.h | 2+-
Msrc/atrstm_radcoefs_simd4.c | 2+-
Msrc/atrstm_radcoefs_simd4.h | 2+-
Msrc/atrstm_rdgfa.c | 2+-
Msrc/atrstm_rdgfa.h | 2+-
Msrc/atrstm_rdgfa_simd4.h | 2+-
Msrc/atrstm_setup_octrees.c | 2+-
Msrc/atrstm_setup_octrees.h | 2+-
Msrc/atrstm_setup_uvm.c | 2+-
Msrc/atrstm_svx.c | 2+-
Msrc/atrstm_svx.h | 2+-
Msrc/test_atrstm.c | 2+-
Msrc/test_atrstm_radcoefs.c | 2+-
Msrc/test_atrstm_radcoefs_simd.c | 2+-
27 files changed, 37 insertions(+), 28 deletions(-)

diff --git a/README.md b/README.md @@ -23,9 +23,18 @@ resulting project can be edited, built, tested and installed as any CMake project. Refer to the [CMake documentation](https://cmake.org/documentation) for further informations on CMake. +## Release notes + +### Version 0.0.1 + +- Relies on the Star-Mesh library rather than the obsolete Star-Tetrahedra + library. +- Fix a possible memory leak. +- Fix a wrong assertion. + ## Copyright -Copyright (C) 2022 [|Meso|Star](http://www.meso-star.com) (<contact@meso-star.com>) +Copyright (C) 2022, 2023 [|Méso|Star](http://www.meso-star.com) (<contact@meso-star.com>) Copyright (C) 2020, 2021 Centre National de la Recherche Scientifique (CNRS) ## License diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +# Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) # Copyright (C) 2020, 2021 CNRS # # This program is free software: you can redistribute it and/or modify @@ -60,7 +60,7 @@ include_directories( ################################################################################ set(VERSION_MAJOR 0) set(VERSION_MINOR 0) -set(VERSION_PATCH 0) +set(VERSION_PATCH 1) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) set(ATRSTM_FILES_SRC diff --git a/src/atrstm.c b/src/atrstm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm.h b/src/atrstm.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_c.h b/src/atrstm_c.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_cache.c b/src/atrstm_cache.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_cache.h b/src/atrstm_cache.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_dump_svx_octree.c b/src/atrstm_dump_svx_octree.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_log.c b/src/atrstm_log.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_log.h b/src/atrstm_log.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_partition.c b/src/atrstm_partition.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_partition.h b/src/atrstm_partition.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_radcoefs.c b/src/atrstm_radcoefs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_radcoefs.h b/src/atrstm_radcoefs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_radcoefs_simd4.c b/src/atrstm_radcoefs_simd4.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_radcoefs_simd4.h b/src/atrstm_radcoefs_simd4.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_rdgfa.c b/src/atrstm_rdgfa.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_rdgfa.h b/src/atrstm_rdgfa.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_rdgfa_simd4.h b/src/atrstm_rdgfa_simd4.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_setup_octrees.c b/src/atrstm_setup_octrees.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_setup_octrees.h b/src/atrstm_setup_octrees.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_setup_uvm.c b/src/atrstm_setup_uvm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_svx.c b/src/atrstm_svx.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/atrstm_svx.h b/src/atrstm_svx.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/test_atrstm.c b/src/test_atrstm.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/test_atrstm_radcoefs.c b/src/test_atrstm_radcoefs.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify diff --git a/src/test_atrstm_radcoefs_simd.c b/src/test_atrstm_radcoefs_simd.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2022 |Méso|Star> (contact@meso-star.com) +/* Copyright (C) 2022, 2023 |Méso|Star> (contact@meso-star.com) * Copyright (C) 2020, 2021 CNRS * * This program is free software: you can redistribute it and/or modify