From 70ec3e4ac902250305646d758a0562080d4f12a0 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Fri, 23 Feb 2024 18:57:12 -0600 Subject: [PATCH] NavierStokes_TRBDF2_DG --- NavierStokes_TRBDF2_DG/equation_data.h | 10 ++++++++++ NavierStokes_TRBDF2_DG/navier_stokes_TRBDF2_DG.cc | 12 +++++++++++- NavierStokes_TRBDF2_DG/runtime_parameters.h | 10 ++++++++++ 3 files changed, 31 insertions(+), 1 deletion(-) diff --git a/NavierStokes_TRBDF2_DG/equation_data.h b/NavierStokes_TRBDF2_DG/equation_data.h index 24a1762..6e9d651 100644 --- a/NavierStokes_TRBDF2_DG/equation_data.h +++ b/NavierStokes_TRBDF2_DG/equation_data.h @@ -1,3 +1,13 @@ +/* ----------------------------------------------------------------------------- + * + * SPDX-License-Identifier: LGPL-2.1-or-later + * Copyright (C) 2022 by Giuseppe Orlando + * + * This file is part of the deal.II code gallery. + * + * ----------------------------------------------------------------------------- + */ + // We start by including all the necessary deal.II header files. // #include diff --git a/NavierStokes_TRBDF2_DG/navier_stokes_TRBDF2_DG.cc b/NavierStokes_TRBDF2_DG/navier_stokes_TRBDF2_DG.cc index f5b0f80..2abc653 100644 --- a/NavierStokes_TRBDF2_DG/navier_stokes_TRBDF2_DG.cc +++ b/NavierStokes_TRBDF2_DG/navier_stokes_TRBDF2_DG.cc @@ -1,4 +1,14 @@ -/* Author: Giuseppe Orlando, 2022. */ +/* ----------------------------------------------------------------------------- + * + * SPDX-License-Identifier: LGPL-2.1-or-later + * Copyright (C) 2022 by Giuseppe Orlando + * + * This file is part of the deal.II code gallery. + * + * ----------------------------------------------------------------------------- + * + * Author: Giuseppe Orlando, 2022. + */ // We start by including all the necessary deal.II header files and some C++ // related ones. diff --git a/NavierStokes_TRBDF2_DG/runtime_parameters.h b/NavierStokes_TRBDF2_DG/runtime_parameters.h index acbe846..437427e 100644 --- a/NavierStokes_TRBDF2_DG/runtime_parameters.h +++ b/NavierStokes_TRBDF2_DG/runtime_parameters.h @@ -1,3 +1,13 @@ +/* ----------------------------------------------------------------------------- + * + * SPDX-License-Identifier: LGPL-2.1-or-later + * Copyright (C) 2022 by Giuseppe Orlando + * + * This file is part of the deal.II code gallery. + * + * ----------------------------------------------------------------------------- + */ + // We start by including all the necessary deal.II header files // #include -- 2.39.5