From 3315b6dc6cad5fa8ca26b35341af8356c1ecdf84 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Tue, 9 Oct 2018 14:41:09 +0200 Subject: [PATCH] [T] Simple Dupuit test example. --- .../LiquidFlow/Dupuit/dupuit_quad.prj | 169 ++++++++++++++++++ .../LiquidFlow/Dupuit/square_1x1_quad_1e2.vtu | 3 + .../square_1x1_quad_1e2_geometry_left.vtu | 3 + .../square_1x1_quad_1e2_geometry_right.vtu | 3 + 4 files changed, 178 insertions(+) create mode 100644 Tests/Data/Parabolic/LiquidFlow/Dupuit/dupuit_quad.prj create mode 100644 Tests/Data/Parabolic/LiquidFlow/Dupuit/square_1x1_quad_1e2.vtu create mode 100644 Tests/Data/Parabolic/LiquidFlow/Dupuit/square_1x1_quad_1e2_geometry_left.vtu create mode 100644 Tests/Data/Parabolic/LiquidFlow/Dupuit/square_1x1_quad_1e2_geometry_right.vtu diff --git a/Tests/Data/Parabolic/LiquidFlow/Dupuit/dupuit_quad.prj b/Tests/Data/Parabolic/LiquidFlow/Dupuit/dupuit_quad.prj new file mode 100644 index 00000000000..2987aeac512 --- /dev/null +++ b/Tests/Data/Parabolic/LiquidFlow/Dupuit/dupuit_quad.prj @@ -0,0 +1,169 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<OpenGeoSysProject> + <meshes> + <mesh>square_1x1_quad_1e2.vtu</mesh> + <mesh>square_1x1_quad_1e2_geometry_left.vtu</mesh> + <mesh>square_1x1_quad_1e2_geometry_right.vtu</mesh> + </meshes> + <processes> + <process> + <name>LiquidFlow</name> + <type>LIQUID_FLOW</type> + <integration_order>2</integration_order> + <darcy_gravity> + <!-- axis_id: 0, 1, or the dimension of space minus one --> + <axis_id>1</axis_id> + <!-- g>=0. g=0: non gravity term --> + <g>0.</g> + </darcy_gravity> + <process_variables> + <process_variable>pressure</process_variable> + </process_variables> + <secondary_variables> + <secondary_variable type="static" internal_name="darcy_velocity" output_name="v"/> + </secondary_variables> + <material_property> + <fluid> + <density> + <type>Constant</type> + <value> 1.e3 </value> + </density> + <viscosity> + <type>Constant</type> + <value> 1.e-3 </value> + </viscosity> + </fluid> + <porous_medium> + <porous_medium id="0"> + <permeability> + <permeability_tensor_entries>kappa1</permeability_tensor_entries> + <type>Constant</type> + <!--type>Dupuit</type--> + </permeability> + <porosity> + <type>Constant</type> + <porosity_parameter>constant_porosity_parameter</porosity_parameter> + </porosity> + <storage> + <type>Constant</type> + <value> 1e-5 </value> + </storage> + </porous_medium> + </porous_medium> + </material_property> + </process> + </processes> + <time_loop> + <processes> + <process ref="LiquidFlow"> + <nonlinear_solver>basic_picard</nonlinear_solver> + <convergence_criterion> + <type>DeltaX</type> + <norm_type>NORM2</norm_type> + <abstol>1.e-6</abstol> + </convergence_criterion> + <time_discretization> + <type>BackwardEuler</type> + </time_discretization> + <output> + <variables> + <variable> pressure </variable> + <variable> v </variable> + </variables> + </output> + <time_stepping> + <type>FixedTimeStepping</type> + <t_initial> 0.0 </t_initial> + <t_end> 1e3 </t_end> + <timesteps> + <pair> + <repeat>1000</repeat> + <delta_t>1</delta_t> + </pair> + </timesteps> + </time_stepping> + </process> + </processes> + <output> + <type>VTK</type> + <prefix>dupuit_quad</prefix> + <timesteps> + <pair> + <repeat> 100 </repeat> + <each_steps> 10 </each_steps> + </pair> + </timesteps> + </output> + </time_loop> + <parameters> + <parameter> + <name>p0</name> + <type>Constant</type> + <value>0</value> + </parameter> + <parameter> + <name>p_bc0</name> + <type>Constant</type> + <value>1000</value> + </parameter> + <parameter> + <name>p_bc1</name> + <type>Constant</type> + <value>0</value> + </parameter> + <parameter> + <name>constant_porosity_parameter</name> + <type>Constant</type> + <value>1.0</value> + </parameter> + <parameter> + <name>kappa1</name> + <type>Constant</type> + <values>1e-15 0. 0. 1e-14</values> + </parameter> + </parameters> + <process_variables> + <process_variable> + <name>pressure</name> + <components>1</components> + <order>1</order> + <initial_condition>p0</initial_condition> + <boundary_conditions> + <boundary_condition> + <mesh>square_1x1_quad_1e2_geometry_left</mesh> + <type>Dirichlet</type> + <parameter>p_bc0</parameter> + </boundary_condition> + <boundary_condition> + <mesh>square_1x1_quad_1e2_geometry_right</mesh> + <type>Dirichlet</type> + <parameter>p_bc1</parameter> + </boundary_condition> + </boundary_conditions> + </process_variable> + </process_variables> + <nonlinear_solvers> + <nonlinear_solver> + <name>basic_picard</name> + <type>Picard</type> + <max_iter>10</max_iter> + <linear_solver>general_linear_solver</linear_solver> + </nonlinear_solver> + </nonlinear_solvers> + <linear_solvers> + <linear_solver> + <name>general_linear_solver</name> + <lis>-i cg -p jacobi -tol 1e-16 -maxiter 10000</lis> + <eigen> + <solver_type>CG</solver_type> + <precon_type>DIAGONAL</precon_type> + <max_iteration_step>10000</max_iteration_step> + <error_tolerance>1e-16</error_tolerance> + </eigen> + <petsc> + <prefix>lf</prefix> + <parameters>-lf_ksp_type cg -lf_pc_type bjacobi -lf_ksp_rtol 1e-16 -lf_ksp_max_it 10000</parameters> + </petsc> + </linear_solver> + </linear_solvers> +</OpenGeoSysProject> diff --git a/Tests/Data/Parabolic/LiquidFlow/Dupuit/square_1x1_quad_1e2.vtu b/Tests/Data/Parabolic/LiquidFlow/Dupuit/square_1x1_quad_1e2.vtu new file mode 100644 index 00000000000..b0a55730de0 --- /dev/null +++ b/Tests/Data/Parabolic/LiquidFlow/Dupuit/square_1x1_quad_1e2.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19c1f812f9a66eefc2a3318bf5cb32e09bbb06053e3c30bfb9da8efe70492d75 +size 4699 diff --git a/Tests/Data/Parabolic/LiquidFlow/Dupuit/square_1x1_quad_1e2_geometry_left.vtu b/Tests/Data/Parabolic/LiquidFlow/Dupuit/square_1x1_quad_1e2_geometry_left.vtu new file mode 100644 index 00000000000..d9b5beb7201 --- /dev/null +++ b/Tests/Data/Parabolic/LiquidFlow/Dupuit/square_1x1_quad_1e2_geometry_left.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:718341d2a0bc33a25423a49642d5cbd08f060d5ad1222ae25b0bab77642bdfe0 +size 2096 diff --git a/Tests/Data/Parabolic/LiquidFlow/Dupuit/square_1x1_quad_1e2_geometry_right.vtu b/Tests/Data/Parabolic/LiquidFlow/Dupuit/square_1x1_quad_1e2_geometry_right.vtu new file mode 100644 index 00000000000..5adcb1cdd6f --- /dev/null +++ b/Tests/Data/Parabolic/LiquidFlow/Dupuit/square_1x1_quad_1e2_geometry_right.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aa273e7328b89475393856c9bfa0dc47d420220293f4d5cfcb1e91a7d418428 +size 2108 -- GitLab