From 81de98d9e2daa3d903c3d6ff43d20973326cc4b1 Mon Sep 17 00:00:00 2001 From: Grzegorz Kowal Date: Wed, 1 Feb 2023 18:36:37 -0300 Subject: [PATCH] Update the copyright year to 2023. Signed-off-by: Grzegorz Kowal --- README.md | 2 +- python/amunpy/src/amunpy/__init__.py | 2 +- python/amunpy/src/amunpy/amun.py | 2 +- python/amunpy/src/amunpy/amunh5.py | 2 +- python/amunpy/src/amunpy/amunh5_deprecated.py | 2 +- python/amunpy/src/amunpy/amunxml.py | 2 +- python/amunpy/src/amunpy/integrals.py | 2 +- python/amunpy/src/amunpy/interpolation.py | 2 +- python/amunpy/src/amunpy/octree.py | 2 +- python/amunpy/src/amunpy/vtkio.py | 2 +- sources/algebra.F90 | 2 +- sources/amun.F90 | 2 +- sources/blocks.F90 | 2 +- sources/boundaries.F90 | 2 +- sources/compression.F90 | 2 +- sources/constants.F90 | 2 +- sources/coordinates.F90 | 2 +- sources/equations.F90 | 2 +- sources/evolution.F90 | 2 +- sources/forcing.F90 | 2 +- sources/gravity.F90 | 2 +- sources/hash.F90 | 2 +- sources/helpers.F90 | 4 ++-- sources/interpolations.F90 | 2 +- sources/io.F90 | 2 +- sources/mesh.F90 | 2 +- sources/mpitools.F90 | 2 +- sources/operators.F90 | 2 +- sources/parameters.F90 | 2 +- sources/problems.F90 | 2 +- sources/random.F90 | 2 +- sources/refinement.F90 | 2 +- sources/schemes.F90 | 2 +- sources/shapes.F90 | 2 +- sources/sources.F90 | 2 +- sources/statistics.F90 | 2 +- sources/system.F90 | 2 +- sources/timers.F90 | 2 +- sources/user_problem.F90 | 2 +- sources/workspace.F90 | 2 +- 40 files changed, 41 insertions(+), 41 deletions(-) diff --git a/README.md b/README.md index 2e75a08..b14021e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # **The AMUN Code** -## Copyright (C) 2008-2022 Grzegorz Kowal +## Copyright (C) 2008-2023 Grzegorz Kowal [![Build Status](https://ampere-orbis.nsupdate.info/api/badges/gkowal/amun-code/status.svg)](https://ampere-orbis.nsupdate.info/gkowal/amun-code) diff --git a/python/amunpy/src/amunpy/__init__.py b/python/amunpy/src/amunpy/__init__.py index 18e18d5..0ed875e 100644 --- a/python/amunpy/src/amunpy/__init__.py +++ b/python/amunpy/src/amunpy/__init__.py @@ -20,7 +20,7 @@ __all__ = [ 'AmunXML', 'AmunH5', 'WriteVTK', \ 'amun_attribute', 'amun_coordinate', 'amun_dataset', 'amun_dataset_vtk', 'amun_integrals' ] __author__ = "Grzegorz Kowal" -__copyright__ = "Copyright 2018-2022 Grzegorz Kowal " +__copyright__ = "Copyright 2018-2023 Grzegorz Kowal " __version__ = "0.9.9" __maintainer__ = "Grzegorz Kowal" __email__ = "grzegorz@amuncode.org" diff --git a/python/amunpy/src/amunpy/amun.py b/python/amunpy/src/amunpy/amun.py index 9e612ad..6871369 100644 --- a/python/amunpy/src/amunpy/amun.py +++ b/python/amunpy/src/amunpy/amun.py @@ -5,7 +5,7 @@ This file is part of the AMUN source code, a program to perform Newtonian or relativistic magnetohydrodynamical simulations on uniform or adaptive grid. - Copyright (C) 2021-2022 Grzegorz Kowal + Copyright (C) 2021-2023 Grzegorz Kowal 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/python/amunpy/src/amunpy/amunh5.py b/python/amunpy/src/amunpy/amunh5.py index eb59cce..50e794d 100644 --- a/python/amunpy/src/amunpy/amunh5.py +++ b/python/amunpy/src/amunpy/amunh5.py @@ -5,7 +5,7 @@ Newtonian or relativistic magnetohydrodynamical simulations on uniform or adaptive mesh. - Copyright (C) 2018-2022 Grzegorz Kowal + Copyright (C) 2018-2023 Grzegorz Kowal 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/python/amunpy/src/amunpy/amunh5_deprecated.py b/python/amunpy/src/amunpy/amunh5_deprecated.py index 3d28d81..828107c 100644 --- a/python/amunpy/src/amunpy/amunh5_deprecated.py +++ b/python/amunpy/src/amunpy/amunh5_deprecated.py @@ -5,7 +5,7 @@ Newtonian or relativistic magnetohydrodynamical simulations on uniform or adaptive mesh. - Copyright (C) 2018-2022 Grzegorz Kowal + Copyright (C) 2018-2023 Grzegorz Kowal 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/python/amunpy/src/amunpy/amunxml.py b/python/amunpy/src/amunpy/amunxml.py index 1a85f52..2c3599b 100644 --- a/python/amunpy/src/amunpy/amunxml.py +++ b/python/amunpy/src/amunpy/amunxml.py @@ -5,7 +5,7 @@ Newtonian or relativistic magnetohydrodynamical simulations on uniform or adaptive mesh. - Copyright (C) 2018-2022 Grzegorz Kowal + Copyright (C) 2018-2023 Grzegorz Kowal 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/python/amunpy/src/amunpy/integrals.py b/python/amunpy/src/amunpy/integrals.py index 9824a99..55e8fe5 100644 --- a/python/amunpy/src/amunpy/integrals.py +++ b/python/amunpy/src/amunpy/integrals.py @@ -5,7 +5,7 @@ Newtonian or relativistic magnetohydrodynamical simulations on uniform or adaptive mesh. - Copyright (C) 2018-2022 Grzegorz Kowal + Copyright (C) 2018-2023 Grzegorz Kowal 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/python/amunpy/src/amunpy/interpolation.py b/python/amunpy/src/amunpy/interpolation.py index e38c01d..a71a96d 100644 --- a/python/amunpy/src/amunpy/interpolation.py +++ b/python/amunpy/src/amunpy/interpolation.py @@ -5,7 +5,7 @@ Newtonian or relativistic magnetohydrodynamical simulations on uniform or adaptive mesh. - Copyright (C) 2018-2022 Grzegorz Kowal + Copyright (C) 2018-2023 Grzegorz Kowal 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/python/amunpy/src/amunpy/octree.py b/python/amunpy/src/amunpy/octree.py index c25afdc..68dc6aa 100644 --- a/python/amunpy/src/amunpy/octree.py +++ b/python/amunpy/src/amunpy/octree.py @@ -5,7 +5,7 @@ Newtonian or relativistic magnetohydrodynamical simulations on uniform or adaptive mesh. - Copyright (C) 2018-2022 Grzegorz Kowal + Copyright (C) 2018-2023 Grzegorz Kowal 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/python/amunpy/src/amunpy/vtkio.py b/python/amunpy/src/amunpy/vtkio.py index 8091990..d3a90d9 100644 --- a/python/amunpy/src/amunpy/vtkio.py +++ b/python/amunpy/src/amunpy/vtkio.py @@ -5,7 +5,7 @@ Newtonian or relativistic magnetohydrodynamical simulations on uniform or adaptive mesh. - Copyright (C) 2018-2022 Grzegorz Kowal + Copyright (C) 2018-2023 Grzegorz Kowal 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/sources/algebra.F90 b/sources/algebra.F90 index ccec801..18c1166 100644 --- a/sources/algebra.F90 +++ b/sources/algebra.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/amun.F90 b/sources/amun.F90 index 060e5e4..2ac4e6b 100644 --- a/sources/amun.F90 +++ b/sources/amun.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/blocks.F90 b/sources/blocks.F90 index e1c84cb..3958571 100644 --- a/sources/blocks.F90 +++ b/sources/blocks.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/boundaries.F90 b/sources/boundaries.F90 index f698f9d..c55362d 100644 --- a/sources/boundaries.F90 +++ b/sources/boundaries.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/compression.F90 b/sources/compression.F90 index ab2a13e..60466b8 100644 --- a/sources/compression.F90 +++ b/sources/compression.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2020-2022 Grzegorz Kowal +!! Copyright (C) 2020-2023 Grzegorz Kowal !! !! 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/sources/constants.F90 b/sources/constants.F90 index ff2f90b..2d68e62 100644 --- a/sources/constants.F90 +++ b/sources/constants.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/coordinates.F90 b/sources/coordinates.F90 index ee7a72b..604354a 100644 --- a/sources/coordinates.F90 +++ b/sources/coordinates.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/equations.F90 b/sources/equations.F90 index ba96e78..c6dbb3e 100644 --- a/sources/equations.F90 +++ b/sources/equations.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/evolution.F90 b/sources/evolution.F90 index a7245fa..c953f32 100644 --- a/sources/evolution.F90 +++ b/sources/evolution.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/forcing.F90 b/sources/forcing.F90 index 4916e49..5a5858b 100644 --- a/sources/forcing.F90 +++ b/sources/forcing.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2017-2022 Grzegorz Kowal +!! Copyright (C) 2017-2023 Grzegorz Kowal !! !! 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/sources/gravity.F90 b/sources/gravity.F90 index d03e01a..3a9cad2 100644 --- a/sources/gravity.F90 +++ b/sources/gravity.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/hash.F90 b/sources/hash.F90 index c5b9dcb..d2dc2c6 100644 --- a/sources/hash.F90 +++ b/sources/hash.F90 @@ -5,7 +5,7 @@ !! adaptive mesh. !! !! Copyright (C) 2012-2020 Yann Collet -!! Copyright (C) 2020-2022 Grzegorz Kowal +!! Copyright (C) 2020-2023 Grzegorz Kowal !! !! 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/sources/helpers.F90 b/sources/helpers.F90 index 0c332b9..c8e3ef9 100644 --- a/sources/helpers.F90 +++ b/sources/helpers.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2019-2022 Grzegorz Kowal +!! Copyright (C) 2019-2023 Grzegorz Kowal !! !! 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 @@ -91,7 +91,7 @@ module helpers write(*,"(1x,78('-'))") write(*,"(1x,18('='),17x,a,17x,19('='))") 'A M U N' write(*,"(1x,16('='),4x,a,4x,16('='))") & - 'Copyright (C) 2008-2022 Grzegorz Kowal' + 'Copyright (C) 2008-2023 Grzegorz Kowal' write(*,"(1x,18('='),9x,a,9x,19('='))") & 'under GNU GPLv3 license' write(*,"(1x,78('-'))") diff --git a/sources/interpolations.F90 b/sources/interpolations.F90 index 9b21e3f..a611165 100644 --- a/sources/interpolations.F90 +++ b/sources/interpolations.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/io.F90 b/sources/io.F90 index a6578dd..56a9988 100644 --- a/sources/io.F90 +++ b/sources/io.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/mesh.F90 b/sources/mesh.F90 index 692e1dc..42904db 100644 --- a/sources/mesh.F90 +++ b/sources/mesh.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/mpitools.F90 b/sources/mpitools.F90 index e2343b7..e04915e 100644 --- a/sources/mpitools.F90 +++ b/sources/mpitools.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/operators.F90 b/sources/operators.F90 index 6230611..1a27970 100644 --- a/sources/operators.F90 +++ b/sources/operators.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/parameters.F90 b/sources/parameters.F90 index 235b55a..91060c8 100644 --- a/sources/parameters.F90 +++ b/sources/parameters.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/problems.F90 b/sources/problems.F90 index 0d401d3..1c527a6 100644 --- a/sources/problems.F90 +++ b/sources/problems.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/random.F90 b/sources/random.F90 index ed42555..d6e909f 100644 --- a/sources/random.F90 +++ b/sources/random.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/refinement.F90 b/sources/refinement.F90 index 4899822..ccfabe3 100644 --- a/sources/refinement.F90 +++ b/sources/refinement.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/schemes.F90 b/sources/schemes.F90 index 8bdea42..ea13213 100644 --- a/sources/schemes.F90 +++ b/sources/schemes.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/shapes.F90 b/sources/shapes.F90 index 05e4b00..8332d74 100644 --- a/sources/shapes.F90 +++ b/sources/shapes.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/sources.F90 b/sources/sources.F90 index 77151a2..9d46622 100644 --- a/sources/sources.F90 +++ b/sources/sources.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/statistics.F90 b/sources/statistics.F90 index ef26090..577d904 100644 --- a/sources/statistics.F90 +++ b/sources/statistics.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/system.F90 b/sources/system.F90 index d0b691b..bf15025 100644 --- a/sources/system.F90 +++ b/sources/system.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2017-2022 Grzegorz Kowal +!! Copyright (C) 2017-2023 Grzegorz Kowal !! !! 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/sources/timers.F90 b/sources/timers.F90 index 0c9bf52..e3fce91 100644 --- a/sources/timers.F90 +++ b/sources/timers.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2008-2022 Grzegorz Kowal +!! Copyright (C) 2008-2023 Grzegorz Kowal !! !! 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/sources/user_problem.F90 b/sources/user_problem.F90 index ed4fc60..7a502f1 100644 --- a/sources/user_problem.F90 +++ b/sources/user_problem.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2017-2022 Grzegorz Kowal +!! Copyright (C) 2017-2023 Grzegorz Kowal !! !! 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/sources/workspace.F90 b/sources/workspace.F90 index 89c0a13..4e94d0b 100644 --- a/sources/workspace.F90 +++ b/sources/workspace.F90 @@ -4,7 +4,7 @@ !! Newtonian or relativistic magnetohydrodynamical simulations on uniform or !! adaptive mesh. !! -!! Copyright (C) 2022 Grzegorz Kowal +!! Copyright (C) 2022-2023 Grzegorz Kowal !! !! 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