From e70d9ceeab86d5dc1af43880e5c041da2ecb8056 Mon Sep 17 00:00:00 2001 From: Wenqing Wang <wenqing.wang@ufz.de> Date: Thu, 7 Jul 2022 12:02:40 +0200 Subject: [PATCH] [LiquidFlowData] Added a reference member for aperture size parameter --- ProcessLib/LiquidFlow/LiquidFlowData.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ProcessLib/LiquidFlow/LiquidFlowData.h b/ProcessLib/LiquidFlow/LiquidFlowData.h index 22e99b2825a..f5b8ae34800 100644 --- a/ProcessLib/LiquidFlow/LiquidFlowData.h +++ b/ProcessLib/LiquidFlow/LiquidFlowData.h @@ -13,6 +13,8 @@ #include <Eigen/Dense> #include <memory> +#include "ParameterLib/Parameter.h" + namespace MaterialPropertyLib { class MaterialSpatialDistributionMap; @@ -34,6 +36,10 @@ struct LiquidFlowData final Eigen::VectorXd const specific_body_force; bool const has_gravity; + + /// It stores aperture size, which is the thickness of 2D element or the + /// cross section area of 1D element. For 3D element, the value is set to 1. + ParameterLib::Parameter<double> const& aperture_size; }; } // namespace LiquidFlow -- GitLab