stardis

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

commit 32101678e91136440f5103a5c7413a55aa7c44ed
parent 54ec11d2d217c865c3537964ef1def2ffcc8d563
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Mon, 24 Apr 2023 17:12:40 +0200

Merge branch 'release_0.9' into develop

Diffstat:
MREADME.md | 41+++++++++++++++++++++++++++++++++++------
Mcmake/CMakeLists.txt | 6+++---
Mcmake/doc/CMakeLists.txt | 2+-
Mcmake/stardis-green-types/CMakeLists.txt | 2+-
Mcmake/stardis-prog-properties/CMakeLists.txt | 2+-
Mdoc/stardis-input.5.txt | 2+-
Mdoc/stardis-output.5.txt | 2+-
Mdoc/stardis.1.txt.in | 4++--
Msrc/stardis-app.c | 4++--
Msrc/stardis-app.h | 2+-
Msrc/stardis-args.c | 4++--
Msrc/stardis-args.h | 2+-
Msrc/stardis-compute.c | 2+-
Msrc/stardis-compute.h | 2+-
Msrc/stardis-description.c | 2+-
Msrc/stardis-description.h | 2+-
Msrc/stardis-fbound-prog.c | 2+-
Msrc/stardis-fbound-prog.h | 2+-
Msrc/stardis-fbound.c | 2+-
Msrc/stardis-fbound.h | 2+-
Msrc/stardis-fluid-prog.c | 2+-
Msrc/stardis-fluid-prog.h | 2+-
Msrc/stardis-fluid.c | 2+-
Msrc/stardis-fluid.h | 2+-
Msrc/stardis-hbound-prog.c | 2+-
Msrc/stardis-hbound-prog.h | 2+-
Msrc/stardis-hbound.c | 2+-
Msrc/stardis-hbound.h | 2+-
Msrc/stardis-hfbound-prog.c | 2+-
Msrc/stardis-hfbound-prog.h | 2+-
Msrc/stardis-hfbound.c | 2+-
Msrc/stardis-hfbound.h | 2+-
Msrc/stardis-intface.c | 2+-
Msrc/stardis-intface.h | 2+-
Msrc/stardis-main.c | 2+-
Msrc/stardis-output.c | 2+-
Msrc/stardis-output.h | 2+-
Msrc/stardis-parsing.c | 2+-
Msrc/stardis-parsing.h | 2+-
Msrc/stardis-program.c | 2+-
Msrc/stardis-program.h | 2+-
Msrc/stardis-sfconnect-prog.c | 2+-
Msrc/stardis-sfconnect-prog.h | 2+-
Msrc/stardis-sfconnect.c | 2+-
Msrc/stardis-sfconnect.h | 2+-
Msrc/stardis-solid-prog.c | 2+-
Msrc/stardis-solid-prog.h | 2+-
Msrc/stardis-solid.c | 2+-
Msrc/stardis-solid.h | 2+-
Msrc/stardis-ssconnect-prog.c | 2+-
Msrc/stardis-ssconnect-prog.h | 2+-
Msrc/stardis-ssconnect.c | 2+-
Msrc/stardis-ssconnect.h | 2+-
Msrc/stardis-tbound-prog.c | 2+-
Msrc/stardis-tbound-prog.h | 2+-
Msrc/stardis-tbound.c | 2+-
Msrc/stardis-tbound.h | 2+-
Mstardis-green-types/stardis-green-types-config-version.cmake.in | 2+-
Mstardis-green-types/stardis-green-types-config.cmake | 2+-
Mstardis-prog-properties/stardis-prog-properties-config-version.cmake.in | 2+-
Mstardis-prog-properties/stardis-prog-properties-config.cmake | 2+-
61 files changed, 100 insertions(+), 71 deletions(-)

diff --git a/README.md b/README.md @@ -9,7 +9,6 @@ and exposes some of the main features of the solver in an easy to use way. Using stardis is a practical way of carrying out thermal studies on CAD models which can be exported from Salomé or other similar software. - ## How to build Stardis relies on the [CMake](http://www.cmake.org) and the @@ -26,8 +25,6 @@ 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. Then install the RCMake package as well as all the aforementioned prerequisites. Finally generate the project from @@ -36,7 +33,39 @@ variable the install directories of its dependencies. ## Release notes -## Version 0.8 +### Version 0.9 + +#### Programmable properties + +Until now, physical properties as well as boundary and connection conditions +were constant in time and space. In this version, they can be programmed, i.e. +they are variables returned by functions implemented in user-defined libraries +and submitted as dynamically loaded input libraries when Stardis starts. User +libraries must also provide create/release functions that are invoked at +start-up to allow users to load their data and build the internal data +structures required by their libraries at run-time. + +The `stardis-input` file format has been updated to provide a set of new +`_PROG` suffixed keywords used to define these programmed properties and +conditions (e.g. `T_BOUNDARY_FOR_SOLID_PROG` or `H_BOUNDARY_FOR_FLUID_PROG`) + +#### Miscellaneous + +- Addition of the keyword `HF_BOUNDARY_FOR_SOLID` which allows to impose a flux + on a boundary with another condition. For example, a net flux can be defined + in addition to a convective exchange and a radiative transfer. +- Correct the definition of a net flux as a boundary condition: it might not be + defined on the right side of the interface. +- Correct the "subpath type" data of the output paths: as we attach the segment + type to the vertices, we need to locate the type changes along the path on + zero length segments, otherwise the colouring will show a misleading colour + gradient. +- Replace the Mersenne Twister random number generator with Threefry: the + former is much less efficient at rejecting random numbers than the latter, + which is designed for this purpose, a feature on which parallel random number + generations depend heavily + +### 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 @@ -104,7 +133,7 @@ Fix debug build. ### Version 0.3.1 -Add radiative transfer computations. To achieve this, media gain 2 new parameters: +Add radiative transfer computations. To achieve this, media gain 2 new parameters: - emissivity; - `specular_fraction`. @@ -126,7 +155,7 @@ Add radiative transfer computations. To achieve this, media gain 2 new parameter ## License -Copyright (C) 2018-2022 |Meso|Star> (<contact@meso-star.com>). Stardis is free +Copyright (C) 2018-2023 |Méso|Star> (<contact@meso-star.com>). Stardis is free software released under the GPL v3+ license: GNU GPL version 3 or later. You are welcome to redistribute it under certain conditions; refer to the COPYING file for details. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +# Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -63,7 +63,7 @@ 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 8) +set(SDIS_VERSION_MINOR 9) set(SDIS_VERSION_PATCH 0) set(SDIS_VERSION ${SDIS_VERSION_MAJOR}.${SDIS_VERSION_MINOR}.${SDIS_VERSION_PATCH}) @@ -94,7 +94,7 @@ find_package(RSys 0.12 REQUIRED) find_package(StarGeom3D 0.1 REQUIRED) find_package(Star3D 0.8 REQUIRED) find_package(StarEnc3D 0.5 REQUIRED) -find_package(Stardis 0.13 REQUIRED) +find_package(Stardis 0.14 REQUIRED) find_package(StarSTL 0.3 REQUIRED) find_package(StarSP 0.13 REQUIRED) if(MSVC) diff --git a/cmake/doc/CMakeLists.txt b/cmake/doc/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2021 |Meso|Star> (contact@meso-star.com) +# Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/cmake/stardis-green-types/CMakeLists.txt b/cmake/stardis-green-types/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2021 |Meso|Star> (contact@meso-star.com) +# Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/cmake/stardis-prog-properties/CMakeLists.txt b/cmake/stardis-prog-properties/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2021 |Meso|Star> (contact@meso-star.com) +# Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/doc/stardis-input.5.txt b/doc/stardis-input.5.txt @@ -1,4 +1,4 @@ -// Copyright (C) 2018-2022 |Meso|Star> +// Copyright (C) 2018-2023 |Méso|Star> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/doc/stardis-output.5.txt b/doc/stardis-output.5.txt @@ -1,4 +1,4 @@ -// Copyright (C) 2018-2022 |Meso|Star> +// Copyright (C) 2018-2023 |Méso|Star> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/doc/stardis.1.txt.in b/doc/stardis.1.txt.in @@ -1,4 +1,4 @@ -// Copyright (C) 2018-2022 |Meso|Star> +// Copyright (C) 2018-2023 |Méso|Star> // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -352,7 +352,7 @@ ends are written to the *probe_ends.csv* file: COPYRIGHT --------- -Copyright &copy; 2018-2022 |Meso|Star>. License GPLv3+: GNU GPL +Copyright &copy; 2018-2023 |Méso|Star>. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>. This is free software. You are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. diff --git a/src/stardis-app.c b/src/stardis-app.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -139,7 +139,7 @@ check_delta_and_create_solid } } /* Print power */ - if(solid->vpower != SDIS_VOLUMIC_POWER_NONE) { + if(solid->vpower != SDIS_VOLUMIC_POWER_NONE && solid->vpower != 0) { logger_print(stardis->logger, LOG_OUTPUT, "Power of the Solid '%s': %g W\n", str_cget(&solid->name), solid_volume * solid->vpower); diff --git a/src/stardis-app.h b/src/stardis-app.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-args.c b/src/stardis-args.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -324,7 +324,7 @@ short_help fprintf(stream, " Save the final random generator's state in a file.\n"); fprintf(stream, -"\nCopyright (C) 2018-2022 |Meso|Star> <contact@meso-star.com>.\n" +"\nCopyright (C) 2018-2023 |Méso|Star> <contact@meso-star.com>.\n" "stardis is free software released under the GNU GPL license, version 3 or later.\n" "You are free to change or redistribute it under certain conditions\n" "<http://gnu.org/licenses/gpl.html>.\n"); diff --git a/src/stardis-args.h b/src/stardis-args.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-compute.c b/src/stardis-compute.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-compute.h b/src/stardis-compute.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-description.c b/src/stardis-description.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-description.h b/src/stardis-description.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-fbound-prog.c b/src/stardis-fbound-prog.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-fbound-prog.h b/src/stardis-fbound-prog.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-fbound.c b/src/stardis-fbound.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-fbound.h b/src/stardis-fbound.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-fluid-prog.c b/src/stardis-fluid-prog.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-fluid-prog.h b/src/stardis-fluid-prog.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-fluid.c b/src/stardis-fluid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-fluid.h b/src/stardis-fluid.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-hbound-prog.c b/src/stardis-hbound-prog.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-hbound-prog.h b/src/stardis-hbound-prog.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-hbound.c b/src/stardis-hbound.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-hbound.h b/src/stardis-hbound.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-hfbound-prog.c b/src/stardis-hfbound-prog.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-hfbound-prog.h b/src/stardis-hfbound-prog.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-hfbound.c b/src/stardis-hfbound.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-hfbound.h b/src/stardis-hfbound.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-intface.c b/src/stardis-intface.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-intface.h b/src/stardis-intface.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-main.c b/src/stardis-main.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-output.c b/src/stardis-output.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-output.h b/src/stardis-output.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-parsing.c b/src/stardis-parsing.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-parsing.h b/src/stardis-parsing.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-program.c b/src/stardis-program.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-program.h b/src/stardis-program.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-sfconnect-prog.c b/src/stardis-sfconnect-prog.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-sfconnect-prog.h b/src/stardis-sfconnect-prog.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-sfconnect.c b/src/stardis-sfconnect.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-sfconnect.h b/src/stardis-sfconnect.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-solid-prog.c b/src/stardis-solid-prog.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-solid-prog.h b/src/stardis-solid-prog.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-solid.c b/src/stardis-solid.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-solid.h b/src/stardis-solid.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-ssconnect-prog.c b/src/stardis-ssconnect-prog.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-ssconnect-prog.h b/src/stardis-ssconnect-prog.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-ssconnect.c b/src/stardis-ssconnect.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-ssconnect.h b/src/stardis-ssconnect.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-tbound-prog.c b/src/stardis-tbound-prog.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-tbound-prog.h b/src/stardis-tbound-prog.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-tbound.c b/src/stardis-tbound.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/src/stardis-tbound.h b/src/stardis-tbound.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/stardis-green-types/stardis-green-types-config-version.cmake.in b/stardis-green-types/stardis-green-types-config-version.cmake.in @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +# Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/stardis-green-types/stardis-green-types-config.cmake b/stardis-green-types/stardis-green-types-config.cmake @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +# Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/stardis-prog-properties/stardis-prog-properties-config-version.cmake.in b/stardis-prog-properties/stardis-prog-properties-config-version.cmake.in @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +# Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/stardis-prog-properties/stardis-prog-properties-config.cmake b/stardis-prog-properties/stardis-prog-properties-config.cmake @@ -1,4 +1,4 @@ -# Copyright (C) 2018-2022 |Meso|Star> (contact@meso-star.com) +# Copyright (C) 2018-2023 |Méso|Star> (contact@meso-star.com) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by