From dbcb15f8120f17f77898bdfec24aa8572a5b0013 Mon Sep 17 00:00:00 2001
From: Dmitri Naumov <dmitri.naumov@ufz.de>
Date: Wed, 26 May 2021 11:58:27 +0200
Subject: [PATCH] [T/CT] Use Function type property for testing.

Replaces the Linear type property with a general
function type expression with derivatives.
---
 .../DiffusionAndStorageAndAdvection.prj           | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/Tests/Data/Parabolic/ComponentTransport/SimpleSynthetics/DiffusionAndStorageAndAdvection.prj b/Tests/Data/Parabolic/ComponentTransport/SimpleSynthetics/DiffusionAndStorageAndAdvection.prj
index e8a030786e4..8aca946e143 100644
--- a/Tests/Data/Parabolic/ComponentTransport/SimpleSynthetics/DiffusionAndStorageAndAdvection.prj
+++ b/Tests/Data/Parabolic/ComponentTransport/SimpleSynthetics/DiffusionAndStorageAndAdvection.prj
@@ -47,6 +47,20 @@
                     <properties>
                         <property>
                             <name>density</name>
+                            <type>Function</type>
+                            <value>
+                                <expression>1 + 0.026 * concentration + 5e-5 * (phase_pressure - 0.5)</expression>
+                            </value>
+                            <dvalue>
+                                <variable_name>concentration</variable_name>
+                                <expression>0.026</expression>
+                            </dvalue>
+                            <dvalue>
+                                <variable_name>phase_pressure</variable_name>
+                                <expression>5e-5</expression>
+                            </dvalue>
+
+                            <!-- Keep for testing of the Function type property resembling the Linear property
                             <type>Linear</type>
                             <reference_value>1</reference_value>
                             <independent_variable>
@@ -59,6 +73,7 @@
                                 <reference_condition>0.5</reference_condition>
                                 <slope>5e-5</slope>
                             </independent_variable>
+                            -->
                         </property>
                         <property>
                             <name>viscosity</name>
-- 
GitLab