Merge branch 'master' into flux-tubes

This commit is contained in:
Grzegorz Kowal 2024-03-07 18:21:03 -03:00
commit db0a979057
45 changed files with 143 additions and 125 deletions

View File

@ -1,6 +1,6 @@
# **The AMUN Code**
## Copyright (C) 2008-2023 Grzegorz Kowal
## Copyright (C) 2008-2024 Grzegorz Kowal
[![Build Status](https://drone.amuncode.org/api/badges/gkowal/amun-code/status.svg)](https://drone.amuncode.org/gkowal/amun-code)

View File

@ -0,0 +1,40 @@
# problem name and parameters
#
problem = "Kelvin-Helmholtz"
# random number generator parameters
#
gentype = "random"
# physics
#
equation_system = "hd"
equation_of_state = "adi"
# methods
#
time_advance = "rk5(4)10"
riemann_solver = "kepes"
reconstruction = "mp5"
# mesh parameters
#
xmin = -5.0d-01
xmax = 5.0d-01
ymin = -5.0d-01
ymax = 5.0d-01
# refinement control
#
ncells = 16
maxlev = 6
# runtime control parameters
#
tmax = 1.0d+00
cfl = 4.0d-01
# data output control
#
snapshot_interval = 1.0d-01
compression_format = "lz4"

View File

@ -1,58 +0,0 @@
# problem name and parameters
#
problem = "kh"
# random number generator parameters
#
gentype = "random"
# physics
#
equation_system = "mhd"
equation_of_state = "adi"
# methods
#
time_advance = "rk2"
riemann_solver = "hlld"
reconstruction = "limo3"
limiter = "mc"
fix_positivity = "off"
# mesh parameters
#
xmin = -5.0d-01
xmax = 5.0d-01
ymin = -5.0d-01
ymax = 5.0d-01
zmin = -5.0d-01
zmax = 5.0d-01
# refinement control
#
ncells = 8
nghosts = 2
minlev = 1
maxlev = 7
# boundary conditions
#
xlbndry = "periodic"
xubndry = "periodic"
ylbndry = "periodic"
yubndry = "periodic"
zlbndry = "periodic"
zubndry = "periodic"
# runtime control parameters
#
tmax = 1.0d+00
cfl = 4.0d-01
# data output control
#
precise_snapshots = "on"
snapshot_type = "p"
snapshot_interval = 1.0d-01
restart_number = -1
integrals_interval = 10

46
problems/orszag-tang.in Normal file
View File

@ -0,0 +1,46 @@
# problem name and parameters
#
problem = "Orszag-Tang"
# physics
#
equation_system = "mhd"
equation_of_state = "adi"
glm_source_terms = "kepes"
# methods
#
time_advance = "ssprk3(2)4"
riemann_solver = "kepes"
reconstruction = "mp5"
# mesh parameters
#
xmin = -5.00d-01
xmax = 5.00d-01
ymin = -5.00d-01
ymax = 5.00d-01
# refinement control
#
ncells = 32
maxlev = 5
refinement_variables = "dens pres vort curr"
# boundary conditions
#
xlbndry = "periodic"
xubndry = "periodic"
ylbndry = "periodic"
yubndry = "periodic"
zlbndry = "periodic"
zubndry = "periodic"
# runtime control parameters
#
tmax = 5.0d-01
cfl = 5.0d-01
# data output control
#
snapshot_interval = 1.0d-02

View File

@ -16,19 +16,12 @@ equation_of_state = "adi"
# methods
#
time_advance = "ssprk(m,3)"
stages = 4
riemann_solver = "hlld"
reconstruction = "crmp7"
limiter = "mc"
prolongation_limiter = "mc"
fix_positivity = "off"
time_advance = "ssprk3(2)4"
riemann_solver = "roe"
reconstruction = "crmp5"
# mesh parameters
#
xblocks = 1
yblocks = 1
zblocks = 1
xmin = -5.0d-01
xmax = 5.0d-01
ymin = -5.0d-01
@ -38,8 +31,7 @@ zmax = 5.0d-01
# refinement control
#
ncells = 16
minlev = 1
ncells = 32
maxlev = 10
refinement_variables = "dens pres curr"
@ -55,11 +47,9 @@ zubndry = "periodic"
# runtime control parameters
#
tmax = 1.0d+00
cfl = 3.0d-01
cfl = 5.0d-01
# data output control
#
snapshot_interval = 1.0d-01
compression_format = "lz4"
compression_level = 30
integrals_interval = 1
compression_format = "zstd"

View File

@ -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-2023 Grzegorz Kowal <grzegorz@amuncode.org>"
__copyright__ = "Copyright 2018-2024 Grzegorz Kowal <grzegorz@amuncode.org>"
__version__ = "0.9.11"
__maintainer__ = "Grzegorz Kowal"
__email__ = "grzegorz@amuncode.org"

View File

@ -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-2023 Grzegorz Kowal <grzegorz@amuncode.org>
Copyright (C) 2021-2024 Grzegorz Kowal <grzegorz@amuncode.org>
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

View File

@ -5,7 +5,7 @@
Newtonian or relativistic magnetohydrodynamical simulations on uniform or
adaptive mesh.
Copyright (C) 2018-2023 Grzegorz Kowal <grzegorz@amuncode.org>
Copyright (C) 2018-2024 Grzegorz Kowal <grzegorz@amuncode.org>
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

View File

@ -5,7 +5,7 @@
Newtonian or relativistic magnetohydrodynamical simulations on uniform or
adaptive mesh.
Copyright (C) 2018-2023 Grzegorz Kowal <grzegorz@amuncode.org>
Copyright (C) 2018-2024 Grzegorz Kowal <grzegorz@amuncode.org>
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

View File

@ -5,7 +5,7 @@
Newtonian or relativistic magnetohydrodynamical simulations on uniform or
adaptive mesh.
Copyright (C) 2018-2023 Grzegorz Kowal <grzegorz@amuncode.org>
Copyright (C) 2018-2024 Grzegorz Kowal <grzegorz@amuncode.org>
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

View File

@ -5,7 +5,7 @@
Newtonian or relativistic magnetohydrodynamical simulations on uniform or
adaptive mesh.
Copyright (C) 2018-2023 Grzegorz Kowal <grzegorz@amuncode.org>
Copyright (C) 2018-2024 Grzegorz Kowal <grzegorz@amuncode.org>
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

View File

@ -5,7 +5,7 @@
Newtonian or relativistic magnetohydrodynamical simulations on uniform or
adaptive mesh.
Copyright (C) 2018-2023 Grzegorz Kowal <grzegorz@amuncode.org>
Copyright (C) 2018-2024 Grzegorz Kowal <grzegorz@amuncode.org>
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

View File

@ -5,7 +5,7 @@
Newtonian or relativistic magnetohydrodynamical simulations on uniform or
adaptive mesh.
Copyright (C) 2018-2023 Grzegorz Kowal <grzegorz@amuncode.org>
Copyright (C) 2018-2024 Grzegorz Kowal <grzegorz@amuncode.org>
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

View File

@ -5,7 +5,7 @@
Newtonian or relativistic magnetohydrodynamical simulations on uniform or
adaptive mesh.
Copyright (C) 2018-2023 Grzegorz Kowal <grzegorz@amuncode.org>
Copyright (C) 2018-2024 Grzegorz Kowal <grzegorz@amuncode.org>
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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2020-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2020-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2017-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2017-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -5,7 +5,7 @@
!! adaptive mesh.
!!
!! Copyright (C) 2012-2020 Yann Collet
!! Copyright (C) 2020-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2020-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2019-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2019-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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-2023 Grzegorz Kowal'
'Copyright (C) 2008-2024 Grzegorz Kowal'
write(*,"(1x,18('='),9x,a,9x,19('='))") &
'under GNU GPLv3 license'
write(*,"(1x,78('-'))")

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
! (classical and relativistic) plasma modeling software for the study of
! astrophysical phenomena.
!
! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
! <respective copyright line for all contributing authors>
!
! This program is free software: you can redistribute it and/or modify

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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
@ -98,7 +98,7 @@ module problems
case("implosion")
setup_problem => setup_problem_implosion
case("kh", "kelvinhelmholtz", "kelvin-helmholtz")
case("kh", "kelvinhelmholtz", "kelvin-helmholtz", "Kelvin-Helmholtz")
setup_problem => setup_problem_kelvin_helmholtz
case("rt", "rayleightaylor", "rayleigh-taylor")

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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
@ -1969,7 +1969,7 @@ module schemes
bty = qi(iby) / br
btz = qi(ibz) / br
else
bty = 0.0d+00
bty = 1.0d+00
btz = 0.0d+00
end if
@ -3170,7 +3170,7 @@ module schemes
btz = qi(ibz) / br
else
br = 0.0d+00
bty = 0.0d+00
bty = 1.0d+00
btz = 0.0d+00
end if
@ -3306,18 +3306,18 @@ module schemes
f4 = alf * cf / norm
f5 = qs * vqstr
lvec(1,1) = f1 * (v2 - hp) - f4 * lm(7) + f5 - aspb
lvec(1,5) = f1
lvec(1,2) = - f1 * qi(ivx) + f4
lvec(1,3) = - f1 * qi(ivy) - f2 * bty
lvec(1,4) = - f1 * qi(ivz) - f2 * btz
lvec(1,5) = f1
lvec(1,6) = f3 * bty - f1 * qi(iby)
lvec(1,7) = f3 * btz - f1 * qi(ibz)
lvec(7,1) = f1 * (v2 - hp) + f4 * lm(1) - f5 - aspb
lvec(7,5) = f1
lvec(7,2) = - f1 * qi(ivx) - f4
lvec(7,3) = - f1 * qi(ivy) + f2 * bty
lvec(7,4) = - f1 * qi(ivz) + f2 * btz
lvec(7,5) = f1
lvec(7,6) = lvec(1,6)
lvec(7,7) = lvec(1,7)
@ -3327,18 +3327,18 @@ module schemes
f4 = als * cs / norm
f5 = qf * vqstr
lvec(3,1) = f1 * (v2 - hp) - f4 * lm(5) - f5 + afpb
lvec(3,5) = f1
lvec(3,2) = - f1 * qi(ivx) + f4
lvec(3,3) = - f1 * qi(ivy) + f2 * bty
lvec(3,4) = - f1 * qi(ivz) + f2 * btz
lvec(3,5) = f1
lvec(3,6) = - f3 * bty - f1 * qi(iby)
lvec(3,6) = - f3 * btz - f1 * qi(ibz)
lvec(3,7) = - f3 * btz - f1 * qi(ibz)
lvec(5,1) = f1 * (v2 - hp) + f4 * lm(3) + f5 + afpb
lvec(5,5) = f1
lvec(5,2) = - f1 * qi(ivx) - f4
lvec(5,3) = - f1 * qi(ivy) - f2 * bty
lvec(5,4) = - f1 * qi(ivz) - f2 * btz
lvec(5,5) = f1
lvec(5,6) = lvec(3,6)
lvec(5,7) = lvec(3,7)
@ -3359,10 +3359,10 @@ module schemes
f1 = 1.0d+00 / cc2
lvec(4,1) = 1.0d+00 - f1 * (v2h - adi_m2d1 * xx)
lvec(4,5) = - f1
lvec(4,2) = f1 * qi(ivx)
lvec(4,3) = f1 * qi(ivy)
lvec(4,4) = f1 * qi(ivz)
lvec(4,5) = - f1
lvec(4,6) = f1 * qi(iby)
lvec(4,7) = f1 * qi(ibz)

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2017-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2017-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2008-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2008-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2017-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2017-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -4,7 +4,7 @@
!! Newtonian or relativistic magnetohydrodynamical simulations on uniform or
!! adaptive mesh.
!!
!! Copyright (C) 2022-2023 Grzegorz Kowal <grzegorz@amuncode.org>
!! Copyright (C) 2022-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!!
!! 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

View File

@ -6,7 +6,7 @@
! magnetohydrodynamic (classical and relativistic) plasma modeling studies
! of astrophysical phenomena.
!
! Copyright (C) 2023 Grzegorz Kowal <grzegorz@amuncode.org>
! Copyright (C) 2023-2024 Grzegorz Kowal <grzegorz@amuncode.org>
!
! 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