From b11bc10d8ac68798ae2e53f9db3d5c4f824af5fa Mon Sep 17 00:00:00 2001 From: Benedict <135045760+bgeihe@users.noreply.github.com> Date: Thu, 7 Mar 2024 13:04:19 +0100 Subject: [PATCH 1/2] add warning (#1863) --- src/solvers/dgsem/basis_lobatto_legendre.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/solvers/dgsem/basis_lobatto_legendre.jl b/src/solvers/dgsem/basis_lobatto_legendre.jl index 6a92fd1c066..9e21b88dfa1 100644 --- a/src/solvers/dgsem/basis_lobatto_legendre.jl +++ b/src/solvers/dgsem/basis_lobatto_legendre.jl @@ -12,6 +12,7 @@ Create a nodal Lobatto-Legendre basis for polynomials of degree `polydeg`. For the special case `polydeg=0` the DG method reduces to a finite volume method. Therefore, this function sets the center point of the cell as single node. +This exceptional case is currently only supported for TreeMesh! """ struct LobattoLegendreBasis{RealT <: Real, NNODES, VectorT <: AbstractVector{RealT}, From c4bf3df8a4d4e3920b0f774960d129a4af6ee287 Mon Sep 17 00:00:00 2001 From: Benedict <135045760+bgeihe@users.noreply.github.com> Date: Thu, 7 Mar 2024 13:06:20 +0100 Subject: [PATCH 2/2] Update parallelization.md (#1864) MPI support in T8code came with #1803 --- docs/src/parallelization.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/src/parallelization.md b/docs/src/parallelization.md index f599eb5fafe..2114f30fb87 100644 --- a/docs/src/parallelization.md +++ b/docs/src/parallelization.md @@ -69,8 +69,7 @@ installations. Follow the steps described [here](https://github.com/DLR-AMR/T8co [here](https://github.com/trixi-framework/P4est.jl/blob/main/README.md#installation) for the configuration. The paths that point to `libp4est.so` (and potentially to `libsc.so`) need to be the same for P4est.jl and T8code.jl. This could, e.g., be `libp4est.so` that usually can be found -in `lib/` or `local/lib/` in the installation directory of `t8code`. Note that the `T8codeMesh`, however, -does not support MPI yet. +in `lib/` or `local/lib/` in the installation directory of `t8code`. The preferences for [HDF5.jl](https://github.com/JuliaIO/HDF5.jl) always need to be set, even if you do not want to use `HDF5` from Trixi.jl, see also [issue #1079 in HDF5.jl](https://github.com/JuliaIO/HDF5.jl/issues/1079). To set the preferences for HDF5.jl, follow the instructions described