From 9422e10268787e939ea54be03a579664cedf5d91 Mon Sep 17 00:00:00 2001
From: Antoine <antoine.hoffmann@epfl.ch>
Date: Fri, 16 Feb 2024 16:13:35 +0100
Subject: [PATCH] add comments

---
 src/calculus_mod.F90 | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/calculus_mod.F90 b/src/calculus_mod.F90
index 26745191..cec53744 100644
--- a/src/calculus_mod.F90
+++ b/src/calculus_mod.F90
@@ -3,13 +3,13 @@ MODULE calculus
   USE prec_const, ONLY: xp
   IMPLICIT NONE
   REAL(xp), dimension(-2:2) :: dz_usu = &
-   (/  1._xp/12._xp, -2._xp/3._xp, 0._xp, 2._xp/3._xp, -1._xp/12._xp /) ! fd4 centered stencil
+   (/  1._xp/12._xp, -2._xp/3._xp, 0._xp, 2._xp/3._xp, -1._xp/12._xp /) ! 1st derivative, 4th order, centered stencil
   REAL(xp), dimension(-2:1) :: dz_o2e = &
-   (/ 1._xp/24._xp,-9._xp/8._xp, 9._xp/8._xp,-1._xp/24._xp /) ! fd4 odd to even stencil
+   (/ 1._xp/24._xp,-9._xp/8._xp, 9._xp/8._xp,-1._xp/24._xp /) ! 1st derivative, 4th order, odd to even stencil
   REAL(xp), dimension(-1:2) :: dz_e2o = &
-   (/ 1._xp/24._xp,-9._xp/8._xp, 9._xp/8._xp,-1._xp/24._xp /) ! fd4 odd to even stencil
+   (/ 1._xp/24._xp,-9._xp/8._xp, 9._xp/8._xp,-1._xp/24._xp /) ! 1st derivative, 4th order, even to odd stencil
    REAL(xp), dimension(-2:2) :: dz2_usu = &
-   (/-1._xp/12._xp, 4._xp/3._xp, -5._xp/2._xp, 4._xp/3._xp, -1._xp/12._xp /)! 2th derivative, 4th order (for parallel hypdiff)
+   (/-1._xp/12._xp, 4._xp/3._xp, -5._xp/2._xp, 4._xp/3._xp, -1._xp/12._xp /)! 2nd derivative, 4th order (for parallel hypdiff)
    REAL(xp), dimension(-2:2) :: dz4_usu = &
    (/  1._xp, -4._xp, 6._xp, -4._xp, 1._xp /) ! 4th derivative, 2nd order (for parallel hypdiff)
    REAL(xp), dimension(-2:1) :: iz_o2e = &
-- 
GitLab