From 6368d63ba566ba993baa53bf8a2cb2432e308f6a Mon Sep 17 00:00:00 2001
From: Sebastian Eibl <sebastian.eibl@fau.de>
Date: Mon, 25 May 2020 17:39:14 +0200
Subject: [PATCH] [UPDATE] heat conduction kernel description

---
 python/mesa_pd/templates/kernel/HeatConduction.templ.h | 4 ++--
 src/mesa_pd/kernel/HeatConduction.h                    | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/python/mesa_pd/templates/kernel/HeatConduction.templ.h b/python/mesa_pd/templates/kernel/HeatConduction.templ.h
index 8fe94e6da..ef12443d9 100644
--- a/python/mesa_pd/templates/kernel/HeatConduction.templ.h
+++ b/python/mesa_pd/templates/kernel/HeatConduction.templ.h
@@ -38,9 +38,9 @@ namespace mesa_pd {
 namespace kernel {
 
 /**
- * Basic DEM kernel
+ * Heat conduction interaction kernel
  *
- * This DEM kernel supports spring&dashpot in normal direction as well as friction in tangential direction.
+ * This kernel implements a simple heat conduction: \frac{dQ}{dt} = - \alpha (T_2 - T_1)
  *
  * \code
    {%- for prop in interface %}
diff --git a/src/mesa_pd/kernel/HeatConduction.h b/src/mesa_pd/kernel/HeatConduction.h
index 12826c523..57e60cbcc 100644
--- a/src/mesa_pd/kernel/HeatConduction.h
+++ b/src/mesa_pd/kernel/HeatConduction.h
@@ -38,9 +38,9 @@ namespace mesa_pd {
 namespace kernel {
 
 /**
- * Basic DEM kernel
+ * Heat conduction interaction kernel
  *
- * This DEM kernel supports spring&dashpot in normal direction as well as friction in tangential direction.
+ * This kernel implements a simple heat conduction: \frac{dQ}{dt} = - \alpha (T_2 - T_1)
  *
  * \code
  * const walberla::real_t& getTemperature(const size_t p_idx) const;
-- 
GitLab