From e2f8b2d07eb936a5b143c37059bcb16b663e2ca2 Mon Sep 17 00:00:00 2001
From: Ponsuganth Ilangovan Ponkumar Ilango
 <pponkumar@geophysik.uni-muenchen.de>
Date: Thu, 15 Aug 2024 14:10:26 +0200
Subject: [PATCH] Call k_mass integrand with correct args

And correct documentation as well
---
 hog/forms.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/hog/forms.py b/hog/forms.py
index 774752b..e8dc31b 100644
--- a/hog/forms.py
+++ b/hog/forms.py
@@ -375,7 +375,7 @@ def k_mass(
     coefficient_function_space: Optional[FunctionSpace] = None,
 ) -> Form:
     docstring = f"""
-Diffusion operator with a scalar coefficient.
+Mass operator scaled with a coefficient.
 
 Geometry map: {blending}
 
@@ -398,6 +398,7 @@ Weak formulation
         symbolizer,
         blending=blending,
         is_symmetric=trial == test,
+        fe_coefficients={"k": coefficient_function_space},
         docstring=docstring,
     )
 
-- 
GitLab