]> https://gitweb.dealii.org/ - code-gallery.git/commitdiff
TravelingWaves: add copyright notices and license 197/head
authorMatthias Maier <tamiko@43-1.org>
Fri, 26 Jul 2024 07:35:26 +0000 (02:35 -0500)
committerMatthias Maier <tamiko@43-1.org>
Fri, 26 Jul 2024 07:36:29 +0000 (02:36 -0500)
15 files changed:
TravelingWaves/AuxiliaryFunctions.h
TravelingWaves/IntegrateSystem.h
TravelingWaves/LimitSolution.cc
TravelingWaves/LimitSolution.h
TravelingWaves/LinearInterpolator.h
TravelingWaves/Parameters.cc
TravelingWaves/Parameters.h
TravelingWaves/Solution.cc
TravelingWaves/Solution.h
TravelingWaves/TravelingWaveSolver.cc
TravelingWaves/TravelingWaveSolver.h
TravelingWaves/calculate_profile.cc
TravelingWaves/calculate_profile.h
TravelingWaves/main.cc
TravelingWaves/plot.py

index f773070a0152bff6b6ea2f64c4584edeaa4a1abd..784809e23bc8ab53c362ca8bd6ec0239cc4349ac 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #ifndef AUXILIARY_FUNCTIONS
 #define AUXILIARY_FUNCTIONS
 
index ec714940b58d87f19d9237aebfdcb60805e36ce7..28002eaa8e9ca200496bea359c4033cb7309126f 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #ifndef INTEGRATE_SYSTEM
 #define INTEGRATE_SYSTEM
 
@@ -99,4 +109,4 @@ void IntegrateSystemAtTimePoints(
 
 }
 
-#endif
\ No newline at end of file
+#endif
index 039bba7398d92d5e720fdca41df817a0ba0d68ca..3ded098cb63097d89ce23fad8f706ea257d86ab4 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #include "LimitSolution.h"
 
 namespace TravelingWave
@@ -72,4 +82,4 @@ namespace TravelingWave
     }
   }
 
-} // namespace TravelingWave
\ No newline at end of file
+} // namespace TravelingWave
index e5dcc2020d59298046c711f247a3d8572f6e45a6..767b3384bd664f36daf4d3ae6671b90395c2acf6 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #ifndef LIMIT_SOLUTION
 #define LIMIT_SOLUTION
 
@@ -44,4 +54,4 @@ namespace TravelingWave
 
 } // namespace TravelingWave
 
-#endif
\ No newline at end of file
+#endif
index 7c2720ddab8efef1608e9ea5c360f490f22df47a..f153c7c3a54055ab283c9341a8edcde8d6499472 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #ifndef LINEAR_INTERPOLATOR
 #define LINEAR_INTERPOLATOR
 
@@ -56,4 +66,4 @@ Number_Type LinearInterpolator<Number_Type>::value(const Number_Type x) const
   return res;
 }
 
-#endif
\ No newline at end of file
+#endif
index 4222601c659162749633e0feb285a8878fa32ecf..430fea5848d9252c3d66207fa8c666332f3c7259 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #include "Parameters.h"
 
 namespace TravelingWave
index 554a5109a882408bbc2d1433d221eb008b1e118a..936ae888c551656c42b4d5ee5038b200ac994cf8 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #ifndef PARAMETERS
 #define PARAMETERS
 
index 962334b5fb82c2f1f0537364423ae7f18329c6bc..42433bc8e1a764784c178bfa6a9a8286e08a710c 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #include "Solution.h"
 
 namespace TravelingWave
@@ -87,4 +97,4 @@ namespace TravelingWave
 
   template class SolutionVectorFunction<Interpolant>;
 
-} // namespace TravelingWave
\ No newline at end of file
+} // namespace TravelingWave
index 4bddad2277c5fb7b160b42af804b96eaee6fe06a..88bd22c5c13e3f8becbc822ea8514e71653cd85d 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #ifndef SOLUTION
 #define SOLUTION
 
@@ -64,4 +74,4 @@ namespace TravelingWave
 
 } // namespace TravelingWave
 
-#endif
\ No newline at end of file
+#endif
index cb5fd1d4c8b96c2bf5f675c87f39dbe9ab818852..cb1edfd39a54d74a2633bc59b9e0ab2e24cedd55 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #include "TravelingWaveSolver.h"
 
 namespace TravelingWave
index 56b0187cf26bcb3b48fae0bb22e63521d024249f..e5f01e072fb79ac2261c6f934441c0bc23dc6fd4 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #ifndef TRAVELING_WAVE_SOLVER
 #define TRAVELING_WAVE_SOLVER
 
@@ -112,4 +122,4 @@ namespace TravelingWave
 
 } // namespace TravelingWave
 
-#endif
\ No newline at end of file
+#endif
index 21be543147814ae2cc422aaf6247e85d312a3045..212228edc4b1ccbf40e5a4d1a853a8861ffec982 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #include "TravelingWaveSolver.h"
 #include "calculate_profile.h"
 
@@ -273,4 +283,4 @@ namespace TravelingWave
 
   }
 
-} // namespace TravelingWave
\ No newline at end of file
+} // namespace TravelingWave
index 8194f9933c5677bcaa1230ee0f511b766bf80e7d..17a9750475628a24a25c2ecdfb7e90bcead117a2 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #ifndef CALCULATE_PROFILE
 #define CALCULATE_PROFILE
 
@@ -27,4 +37,4 @@ namespace TravelingWave
 
 } // namespace TravelingWave
 
-#endif
\ No newline at end of file
+#endif
index 59431a7a3e62cebcdfcbc416c1e2b329c04482d8..ce791f21b41b515f0a54fca54decd28c3bdb9137 100644 (file)
@@ -1,3 +1,13 @@
+/* -----------------------------------------------------------------------------
+ *
+ * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+ * Copyright (C) 2024 by Shamil Magomedov
+ *
+ * This file is part of the deal.II code gallery.
+ *
+ * -----------------------------------------------------------------------------
+ */
+
 #include "calculate_profile.h"
 
 int main(int argc, char *argv[])
index 6c80f629c5ca7fc2d8d55cf8aed0da498e2132d2..d1abdb7037bd4f100cb26104c1e9273d353f67ea 100644 (file)
@@ -1,3 +1,13 @@
+## -----------------------------------------------------------------------------
+##
+## SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception OR LGPL-2.1-or-later
+## Copyright (C) 2024 by Shamil Magomedov
+##
+## This file is part of the deal.II code gallery.
+##
+## -----------------------------------------------------------------------------
+##
+
 import numpy as np
 import matplotlib.pyplot as plt
 import os

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.