diff --git a/ProcessLib/RichardsMechanics/RichardsMechanicsFEM-impl.h b/ProcessLib/RichardsMechanics/RichardsMechanicsFEM-impl.h index c83d8d8f607895b6d5bd524253f1451497f8bf09..2949be6d2f3efe3e4edbe5dd0846ae90d54343ae 100644 --- a/ProcessLib/RichardsMechanics/RichardsMechanicsFEM-impl.h +++ b/ProcessLib/RichardsMechanics/RichardsMechanicsFEM-impl.h @@ -526,9 +526,11 @@ void RichardsMechanicsLocalAssembler<ShapeFunctionDisplacement, ShapeMatricesTypePressure::NodalMatrixType::Zero(pressure_size, pressure_size); - typename ShapeMatricesTypePressure::NodalMatrixType storage_p = + typename ShapeMatricesTypePressure::NodalMatrixType storage_p_a_p = ShapeMatricesTypePressure::NodalMatrixType::Zero(pressure_size, pressure_size); + typename ShapeMatricesTypePressure::NodalVectorType storage_p_a_S = + ShapeMatricesTypePressure::NodalVectorType::Zero(pressure_size); typename ShapeMatricesTypeDisplacement::template MatrixType< displacement_size, pressure_size> @@ -623,12 +625,6 @@ void RichardsMechanicsLocalAssembler<ShapeFunctionDisplacement, MPL::Variable::capillary_pressure, x_position, t, dt); - double const d2S_L_dp_cap_2 = - medium->property(MPL::PropertyType::saturation) - .template d2Value<double>( - variables, MPL::Variable::capillary_pressure, - MPL::Variable::capillary_pressure, x_position, t, dt); - auto const chi = [medium, x_position, t, dt](double const S_L) { MPL::VariableArray variables; variables[static_cast<int>(MPL::Variable::liquid_saturation)] = S_L; @@ -796,23 +792,33 @@ void RichardsMechanicsLocalAssembler<ShapeFunctionDisplacement, dNdx_p.transpose() * k_rel * rho_Ki_over_mu * dNdx_p * w; double const a0 = (alpha - porosity) / K_SR; - double const specific_storage = - dS_L_dp_cap * (p_cap_ip * S_L * a0 - porosity) + - S_L * (porosity / K_LR + S_L * a0); + double const specific_storage_a_p = S_L * (porosity / K_LR + S_L * a0); + double const specific_storage_a_S = porosity - p_cap_ip * S_L * a0; + + double const dspecific_storage_a_p_dp_cap = + dS_L_dp_cap * (porosity / K_LR + 2 * S_L * a0); + double const dspecific_storage_a_S_dp_cap = + -a0 * (S_L + p_cap_ip * dS_L_dp_cap); - double const dspecific_storage_dp_cap = - d2S_L_dp_cap_2 * (p_cap_ip * S_L * a0 - porosity) + - dS_L_dp_cap * - (porosity / K_LR + a0 * 3 * S_L + dS_L_dp_cap * p_cap_ip * a0); + storage_p_a_p.noalias() += + N_p.transpose() * rho_LR * specific_storage_a_p * N_p * w; + storage_p_a_S.noalias() += N_p.transpose() * rho_LR * + specific_storage_a_S * (S_L - S_L_prev) / + dt * w; - storage_p.noalias() += - N_p.transpose() * rho_LR * specific_storage * N_p * w; + local_Jac + .template block<pressure_size, pressure_size>(pressure_index, + pressure_index) + .noalias() += N_p.transpose() * p_cap_dot_ip * rho_LR * + dspecific_storage_a_p_dp_cap * N_p * w; local_Jac .template block<pressure_size, pressure_size>(pressure_index, pressure_index) - .noalias() += N_p.transpose() * rho_LR * p_cap_dot_ip * - dspecific_storage_dp_cap * N_p * w; + .noalias() -= N_p.transpose() * rho_LR * + ((S_L - S_L_prev) * dspecific_storage_a_S_dp_cap + + specific_storage_a_S * dS_L_dp_cap) / + dt * N_p * w; local_Jac .template block<pressure_size, pressure_size>(pressure_index, @@ -845,14 +851,14 @@ void RichardsMechanicsLocalAssembler<ShapeFunctionDisplacement, if (_process_data.apply_mass_lumping) { - storage_p = storage_p.colwise().sum().eval().asDiagonal(); + storage_p_a_p = storage_p_a_p.colwise().sum().eval().asDiagonal(); } // pressure equation, pressure part. local_Jac .template block<pressure_size, pressure_size>(pressure_index, pressure_index) - .noalias() += laplace_p + storage_p / dt; + .noalias() += laplace_p + storage_p_a_p / dt; // pressure equation, displacement part. local_Jac @@ -862,7 +868,7 @@ void RichardsMechanicsLocalAssembler<ShapeFunctionDisplacement, // pressure equation local_rhs.template segment<pressure_size>(pressure_index).noalias() -= - laplace_p * p_L + storage_p * p_L_dot + Kpu * u_dot; + laplace_p * p_L + storage_p_a_p * p_L_dot + storage_p_a_S + Kpu * u_dot; // displacement equation local_rhs.template segment<displacement_size>(displacement_index) diff --git a/ProcessLib/RichardsMechanics/Tests.cmake b/ProcessLib/RichardsMechanics/Tests.cmake index 053fb4468b31e9f4b37ca217ae3461886f8417e1..bec99d9611cf8dd35dd34ef20d262e68435ad7b3 100644 --- a/ProcessLib/RichardsMechanics/Tests.cmake +++ b/ProcessLib/RichardsMechanics/Tests.cmake @@ -354,3 +354,22 @@ AddTest( GLOB bishops_effective_stress_saturation_cutoff_pcs_0_ts_*.vtu porosity porosity 5e-15 1e-15 GLOB bishops_effective_stress_saturation_cutoff_pcs_0_ts_*.vtu porosity_avg porosity_avg 5e-15 1e-15 ) +AddTest( + NAME RichardsMechanics_alternative_mass_balance_anzInterval_10 + PATH RichardsMechanics + EXECUTABLE ogs + EXECUTABLE_ARGS alternative_mass_balance_anzInterval_10.prj + WRAPPER time + TESTER vtkdiff + REQUIREMENTS NOT OGS_USE_MPI + DIFF_DATA + GLOB alternative_mass_balance_anzInterval_10_pcs_0_ts_*.vtu HydraulicFlow HydraulicFlow 1e-14 0 + GLOB alternative_mass_balance_anzInterval_10_pcs_0_ts_*.vtu NodalForces NodalForces 5e-2 0 + GLOB alternative_mass_balance_anzInterval_10_pcs_0_ts_*.vtu displacement displacement 1e-15 0 + GLOB alternative_mass_balance_anzInterval_10_pcs_0_ts_*.vtu epsilon epsilon 1e-15 0 + GLOB alternative_mass_balance_anzInterval_10_pcs_0_ts_*.vtu pressure pressure 1e-15 0 + GLOB alternative_mass_balance_anzInterval_10_pcs_0_ts_*.vtu pressure_interpolated pressure_interpolated 1e-10 1e-15 + GLOB alternative_mass_balance_anzInterval_10_pcs_0_ts_*.vtu saturation saturation 1e-14 1e-15 + GLOB alternative_mass_balance_anzInterval_10_pcs_0_ts_*.vtu sigma sigma 1e-15 0 + GLOB alternative_mass_balance_anzInterval_10_pcs_0_ts_*.vtu velocity velocity 1e-15 0 +) diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_0_t_0.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_0_t_0.000000.vtu index 3ee69041eefef6249020d18e8802842bae3d6bd7..bf004503f50c1c0b822d3711585280b3a062256f 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_0_t_0.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_0_t_0.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7da541220edc3a065913a060e073c5cec35ac04bfff888b18b22f70f38f4535f -size 13532 +oid sha256:a1cafe2a1c6d2576285969a4dbab0f42be567656d3a542a37126ba28fad06356 +size 13536 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_104_t_2000.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_104_t_2000.000000.vtu index acdf49e3f7fd6bf316511d86a3b19766f1ade63f..417e78b066f0905ccca32a81da96aa9c09916c29 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_104_t_2000.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_104_t_2000.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f6fb949aab531acce77880bd6512001027a6bdb0bd55e52b09b8f6d5100011d -size 50168 +oid sha256:5dd0f39e79db7a27eaba5a0a9a69c4d5e8add0367136a60ad0ed868f77873aa5 +size 52692 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_19_t_318.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_19_t_318.000000.vtu index c624d1af8b0b92c2af6e2f600931138ed0f7f4a6..c024c78c2b83e2b49b9cfb338bdf3b5e0b85c5eb 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_19_t_318.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_19_t_318.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27d19f20d4e597e76cbf0b21e18c5f65a98162429f1a79946567719c255ab77e -size 49676 +oid sha256:fbe60a1585f8a72679eacf43f5a6486540b2dcf5d6c2162d21766b11f0910a31 +size 52584 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_1_t_1.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_1_t_1.000000.vtu index a71fa993834e2519fff03fd0ace302155df4df6a..0da46d6a30ae7cc35f6c49a18a8669eaaba3b19c 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_1_t_1.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_1_t_1.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5f6b210951640e41ab7b2e5423655d2ef8380e98e8ba9887281f8ae1fd9c4845 -size 49004 +oid sha256:b698113713591ea13c106f96536850adce70250a754d7ddaccaab9c6924d17e0 +size 52048 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_29_t_518.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_29_t_518.000000.vtu index b36127bc1e05ecf56d8a5dbae45378d9010da720..6af28843099015142f872a61caafc7e7aa6b07b1 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_29_t_518.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_29_t_518.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cc607d7e25aaaa59b09c6323b41aa068b232fbba203d37687103d0b635444dfc -size 49652 +oid sha256:5bde0e64e1a2f4289d59d013a760935daebdbec904db00ccf09a2a7c2507ba0c +size 52408 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_2_t_3.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_2_t_3.000000.vtu index 44c3777145deff7aba0ec2ba291d3536e9fb46e9..2eb5f463f9d3ce45afa26753774b1ff6e1c09b78 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_2_t_3.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_2_t_3.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6a788d2a95b4655de4a2ea71a1252003c2e94d4f88aaad319bea894842717b7c -size 49080 +oid sha256:eebf9e3acd4a9c69e2f23f3a714079151e2b05d87d11335573999aaf02132d14 +size 52276 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_39_t_718.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_39_t_718.000000.vtu index 561f0b9ad6f2519cb354299fc6e74026ab15922a..89e4b9a58ddb8c55ddc7766dc2a87d3630a2b43c 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_39_t_718.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_39_t_718.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:053736e34102c27606b35b977c3fcb695b67b7706e6c13e9363a12871fc86eff -size 49852 +oid sha256:321f962413a9a7d0969a65d8f8eb023510d9350c917a9ed460cff411d5220a44 +size 52612 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_3_t_8.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_3_t_8.000000.vtu index 341a688e73d0a71278ccf07bbf2bf9e2131b6260..9d51a741861f4f7866236e9ffa127be50f476297 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_3_t_8.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_3_t_8.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:498df1b40f0f36b68042c6d4851a887f96c4563076c95c783825f18a9c6e9dfe -size 49212 +oid sha256:b6d829e3bb639dc41e83a34ebe6ae74ca8f407fb8cb71ec9f302a45ce7dea3de +size 52168 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_49_t_918.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_49_t_918.000000.vtu index 1761b9de0a8bd8658365f67ce5544487ca3c1fa2..7d73fc7ade2cc65094fc2d44aa3762f298ae124f 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_49_t_918.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_49_t_918.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:20e1880b55db69db81c45fe609a49de3d81485a9e635e5c522b492500d841664 -size 49980 +oid sha256:99674f5b910d719b26a2a56f7589a06dc13dbee3dabb32bfbeb9f9d1d1890e14 +size 52472 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_4_t_18.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_4_t_18.000000.vtu index 02c4c0766a6c6c8f7042a74c07b594e463eac9f5..74596659c1be74da61e9df3bbf95dcd1d8363914 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_4_t_18.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_4_t_18.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e08876af7fe0016b7897e29427d764a811e1a4c2bdc4db20e21aca4556925ea7 -size 49196 +oid sha256:79950980684a667175aa919fe45693a4c773be096d4b45c2c020674579c229ae +size 52284 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_59_t_1118.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_59_t_1118.000000.vtu index 18c704e7c524d65761ca975e8ef3b6340f095cbe..fb36cd6dcceb644078d646c0a495bff6f2536344 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_59_t_1118.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_59_t_1118.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e7d256c1b082942fe80b0ef74562e8f503282d5f8253c88be3d3d86a56f04b47 -size 49920 +oid sha256:5dc3716c43e9a90c029ee79aa28f084a4e48afec1cace0bfdfe5d4bea415b843 +size 52620 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_5_t_38.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_5_t_38.000000.vtu index 106255e365087ba4fa669aad6698f04ef98aabd3..b51055be29a9a14e1d6fd45da5480bee0c25e904 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_5_t_38.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_5_t_38.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ecace6931bfb2b13999a62def6270368cb8b6445eff0e9d0e26dbbc66bfd21e -size 49240 +oid sha256:7d09a9fc6464e1b439948fe831208d7fd854754594b9f2480a2235c36a50b78c +size 52192 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_69_t_1318.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_69_t_1318.000000.vtu index e7997a8004e46698d330ee2887745e7eb58fff56..4a75bf8346f6db0eccc01599951de7fd1dcd891d 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_69_t_1318.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_69_t_1318.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f29a551b4627c821f09dec6edbca0c916e37118800222037d4923334a56d5181 -size 49896 +oid sha256:aafec4c68364c68833f8db8244da75c3d5c337fc9b5388e29269e66d3406c6c2 +size 52600 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_6_t_58.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_6_t_58.000000.vtu index def877904b708e4d3835ffe30ba101a80343ae2f..d992a65945feb90e371ff2aee94d354adfee875b 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_6_t_58.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_6_t_58.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1da08b7cf6ea6123218c9ebc1db2e4e033d5465c5b32a696c54febcef5ce9245 -size 49284 +oid sha256:8e5209454f89f953531fd479be05f2fa8fbd0840ab342789733cdf45a0e14213 +size 52164 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_79_t_1518.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_79_t_1518.000000.vtu index 30f4e928d49a150a172e8160a681df763b222795..1d9cd7c53b2340a883f895243cd1887bf62a655e 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_79_t_1518.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_79_t_1518.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8060093b687b07574486be391fd67d3c99b55b70e89213c100d7ad30dcf9bfb9 -size 50056 +oid sha256:0f14dc70f03ccb4a17f8258a39d67de0347bad3893404621c1908c5647e41e8c +size 52588 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_7_t_78.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_7_t_78.000000.vtu index 96218e68f97618bfddd8977de601059464af758c..ee7e012f1af4104df0a6866c14288d0df7918bb6 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_7_t_78.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_7_t_78.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:656fb763ff11dd3dc98cc75d2cabe563e4e73c5f99759fe70bc41dc7b64a62b5 -size 49384 +oid sha256:21ab843229b82e6080943343ecf53785aca8487699f0c416a17666ada3457b59 +size 52212 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_89_t_1718.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_89_t_1718.000000.vtu index 43f4cb07343334042c4104e758c789387d2420ec..8972e68462d8159ac4eefdc1df92cfb0f88694bf 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_89_t_1718.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_89_t_1718.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f76d9a294237e723e875028d6945f0eaf2397cf4877d343622b1d80cc07f4d27 -size 49992 +oid sha256:456f332ceaf31f25117649cb98107791174488fe6c3bf03eb70c8374ee59b20b +size 52672 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_8_t_98.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_8_t_98.000000.vtu index ca9a6cfb7ecb530856b17953d13cff44086e976b..ddb609dcaf741596e79e6f6070bd50406ef079e4 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_8_t_98.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_8_t_98.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5cf7dc51e2af64752ed0422799a79fef588947681b92ca1fc07d4c3d9a9c78a6 -size 49440 +oid sha256:319970246fd3ced67377de4fecde119c1aff3c9ef38cb73bf1ec251edb99af1c +size 52368 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_99_t_1918.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_99_t_1918.000000.vtu index fd5ef726a7672be6d51fcf12bdcc97209fe51672..9896ffe7b4e33e03280b69d306683f97517cb800 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_99_t_1918.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_99_t_1918.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d86991f6600b6bcf51a76d80e664259a9b1a21ed702a7eb72348db27a0c5b368 -size 50080 +oid sha256:7c25403a8a1e29a8ffd41c01bc60e9439d7f57e93cb5f3beff4233f13609b6bb +size 52588 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_9_t_118.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_9_t_118.000000.vtu index 9ce7a2b128a93c846e763dd519c0618dcc6a3e48..bfc90f0a596a5a02948831fb7c7e06eb70a88eff 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_9_t_118.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_masslumping_pcs_0_ts_9_t_118.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:134ae0a03675e51a0441576486eaddda60ce43dbe463d53fbd0685f95642a373 -size 49492 +oid sha256:e84eb475f5c91adeb03488272cd4229caf57471e7e4fc4e204319fb58c83302a +size 52408 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_0_t_0.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_0_t_0.000000.vtu index 3ee69041eefef6249020d18e8802842bae3d6bd7..bf004503f50c1c0b822d3711585280b3a062256f 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_0_t_0.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_0_t_0.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7da541220edc3a065913a060e073c5cec35ac04bfff888b18b22f70f38f4535f -size 13532 +oid sha256:a1cafe2a1c6d2576285969a4dbab0f42be567656d3a542a37126ba28fad06356 +size 13536 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_104_t_2000.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_104_t_2000.000000.vtu index b334664445a894ed99c3b9a413f9d437cadab5d1..417e78b066f0905ccca32a81da96aa9c09916c29 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_104_t_2000.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_104_t_2000.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a8ba8ed9dd86577b58b48e90a75077323d4688a16ea1eba7875f1bc4c5828cbf -size 52208 +oid sha256:5dd0f39e79db7a27eaba5a0a9a69c4d5e8add0367136a60ad0ed868f77873aa5 +size 52692 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_19_t_318.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_19_t_318.000000.vtu index 406d9b9d6c1e3c0b901f6121b73f8355791b1ded..c024c78c2b83e2b49b9cfb338bdf3b5e0b85c5eb 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_19_t_318.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_19_t_318.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6b0bc3f9809c124de1137387e87a80f257be44caa8540636713c0ce165d7f6d6 -size 52084 +oid sha256:fbe60a1585f8a72679eacf43f5a6486540b2dcf5d6c2162d21766b11f0910a31 +size 52584 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_1_t_1.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_1_t_1.000000.vtu index c78339357205128ae726de2c59af22a321a343a6..0da46d6a30ae7cc35f6c49a18a8669eaaba3b19c 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_1_t_1.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_1_t_1.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:08530ce15f0a0260983b5fa64dfc6bfd5115750c733bee817fbd1d4adcd47834 -size 51768 +oid sha256:b698113713591ea13c106f96536850adce70250a754d7ddaccaab9c6924d17e0 +size 52048 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_29_t_518.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_29_t_518.000000.vtu index 716b3d9c0ff4ce875560dfc5da6c2e032ee220cf..6af28843099015142f872a61caafc7e7aa6b07b1 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_29_t_518.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_29_t_518.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9f37c6697c6be3cfb01b0a427824aeec2a230001717f86e1622a9f100f21046e -size 52064 +oid sha256:5bde0e64e1a2f4289d59d013a760935daebdbec904db00ccf09a2a7c2507ba0c +size 52408 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_2_t_3.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_2_t_3.000000.vtu index 7f111f49ada32da05bc84f8b379540fa96830e2f..2eb5f463f9d3ce45afa26753774b1ff6e1c09b78 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_2_t_3.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_2_t_3.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8627de9f67e9f6d124e5b39e632e29ce610715e9065d4513faadb5107bb77391 -size 51760 +oid sha256:eebf9e3acd4a9c69e2f23f3a714079151e2b05d87d11335573999aaf02132d14 +size 52276 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_39_t_718.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_39_t_718.000000.vtu index bfff7a30bb15915830c477bd7e56f9300e21ad6c..89e4b9a58ddb8c55ddc7766dc2a87d3630a2b43c 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_39_t_718.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_39_t_718.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9ccd5509948c2d6f75b7a0e03de93c001dfc94e4770e67972d3be290a55c2333 -size 51996 +oid sha256:321f962413a9a7d0969a65d8f8eb023510d9350c917a9ed460cff411d5220a44 +size 52612 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_3_t_8.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_3_t_8.000000.vtu index af2b8acbdd6c50a6ce1310fa400b2fd1b5dc9f77..9d51a741861f4f7866236e9ffa127be50f476297 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_3_t_8.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_3_t_8.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:522be6af6a40750a3bedac111737bbf96b9a1334f526bcdfa650188181b35d0e -size 51516 +oid sha256:b6d829e3bb639dc41e83a34ebe6ae74ca8f407fb8cb71ec9f302a45ce7dea3de +size 52168 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_49_t_918.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_49_t_918.000000.vtu index e7094f061df64b647f3e4cdde66fa17cd53bb289..7d73fc7ade2cc65094fc2d44aa3762f298ae124f 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_49_t_918.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_49_t_918.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cfb76c4fabf96aefd82e83966096d82d9d1b279a77a4ebe668a21088dd714cf1 -size 51940 +oid sha256:99674f5b910d719b26a2a56f7589a06dc13dbee3dabb32bfbeb9f9d1d1890e14 +size 52472 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_4_t_18.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_4_t_18.000000.vtu index 4e1b95c094053f595b2a367ddaf7a5f190ee719b..74596659c1be74da61e9df3bbf95dcd1d8363914 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_4_t_18.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_4_t_18.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:60a816ad9cd78d41866580bf51376d9b6176d7f3c27ac4db0fa74a18d77eb070 -size 51632 +oid sha256:79950980684a667175aa919fe45693a4c773be096d4b45c2c020674579c229ae +size 52284 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_59_t_1118.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_59_t_1118.000000.vtu index ead9a16a982ffe5730b85f6d4abae0eb6f73e488..fb36cd6dcceb644078d646c0a495bff6f2536344 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_59_t_1118.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_59_t_1118.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:45dfc73a2a7ea6a0740e1f5dd14be6c719c03777578930484cfc3c7bdaabe077 -size 52056 +oid sha256:5dc3716c43e9a90c029ee79aa28f084a4e48afec1cace0bfdfe5d4bea415b843 +size 52620 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_5_t_38.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_5_t_38.000000.vtu index 931a34eb4a321c4a5d7205897adfd3fc0504613f..b51055be29a9a14e1d6fd45da5480bee0c25e904 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_5_t_38.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_5_t_38.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ca0f04a2f14612220d180cc80316ba3c423f8a55d9440d8c64860e8c8b7878f5 -size 51760 +oid sha256:7d09a9fc6464e1b439948fe831208d7fd854754594b9f2480a2235c36a50b78c +size 52192 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_69_t_1318.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_69_t_1318.000000.vtu index 96fec622a71cc95f423ad04f6a61d90477606b4b..4a75bf8346f6db0eccc01599951de7fd1dcd891d 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_69_t_1318.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_69_t_1318.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b7de0366e06d566f651a1201d9a2e9c86dc9c8a0026ce9e17497589b2625a98 -size 52060 +oid sha256:aafec4c68364c68833f8db8244da75c3d5c337fc9b5388e29269e66d3406c6c2 +size 52600 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_6_t_58.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_6_t_58.000000.vtu index c44a375c4e9a71a9a5ba6b81cc9ffb805f255710..d992a65945feb90e371ff2aee94d354adfee875b 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_6_t_58.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_6_t_58.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:014d7dadf2aacf694ac5115ba52d86ff37e376e86c5392d4774c079d2c9e6563 -size 51812 +oid sha256:8e5209454f89f953531fd479be05f2fa8fbd0840ab342789733cdf45a0e14213 +size 52164 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_79_t_1518.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_79_t_1518.000000.vtu index b16dcc22168641cae3b1765397af7aa9b046a65c..1d9cd7c53b2340a883f895243cd1887bf62a655e 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_79_t_1518.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_79_t_1518.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9556e176ad49587cf7ebb49c6dc849ae9983363efb1ba9acf0bdb328a03135ff -size 52100 +oid sha256:0f14dc70f03ccb4a17f8258a39d67de0347bad3893404621c1908c5647e41e8c +size 52588 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_7_t_78.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_7_t_78.000000.vtu index ecd928642ada7ca958d6db46aabb4fa48aaaad30..ee7e012f1af4104df0a6866c14288d0df7918bb6 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_7_t_78.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_7_t_78.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b2f3a6316918a4813cd6a26007e17d4048e372e896c7b33bc4dfe5a0ab45b74c -size 51752 +oid sha256:21ab843229b82e6080943343ecf53785aca8487699f0c416a17666ada3457b59 +size 52212 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_89_t_1718.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_89_t_1718.000000.vtu index 9fe28682c08709b1b11ec006999081c7f1af1e97..8972e68462d8159ac4eefdc1df92cfb0f88694bf 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_89_t_1718.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_89_t_1718.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:232a0e6ea9be0b8c18a36cae1799899a018ec50369b6ede9508c28ae02e128ed -size 51924 +oid sha256:456f332ceaf31f25117649cb98107791174488fe6c3bf03eb70c8374ee59b20b +size 52672 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_8_t_98.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_8_t_98.000000.vtu index d28d9b2b4360a7b1d5c8d3cd28f6c1e7b982a9cc..ddb609dcaf741596e79e6f6070bd50406ef079e4 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_8_t_98.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_8_t_98.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:75ec45296965196edfbcc75de728aad45bf4066d040f8d1f6031dcece5b5b9c3 -size 51900 +oid sha256:319970246fd3ced67377de4fecde119c1aff3c9ef38cb73bf1ec251edb99af1c +size 52368 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_99_t_1918.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_99_t_1918.000000.vtu index b1998f4a1d39d3ca64e1deb4e89720f779027694..9896ffe7b4e33e03280b69d306683f97517cb800 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_99_t_1918.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_99_t_1918.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:400fe6d46d2fef8fccd628d5ef18b43a51af8cb7357cc35d45e2f65381553b7a -size 52216 +oid sha256:7c25403a8a1e29a8ffd41c01bc60e9439d7f57e93cb5f3beff4233f13609b6bb +size 52588 diff --git a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_9_t_118.000000.vtu b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_9_t_118.000000.vtu index 3242ac1e8bc23bda5fd43ec3a54be147deca83b7..bfc90f0a596a5a02948831fb7c7e06eb70a88eff 100644 --- a/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_9_t_118.000000.vtu +++ b/Tests/Data/RichardsMechanics/RichardsFlow_2d_small_pcs_0_ts_9_t_118.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f7c55cc754f91d8dc8b091be3135fde013942f0ebe63779b897b22a6ef57609d -size 51804 +oid sha256:e84eb475f5c91adeb03488272cd4229caf57471e7e4fc4e204319fb58c83302a +size 52408 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_0_t_0.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_0_t_0.000000.vtu index ad708cf46cc76e1d7df5873eefd51bb2dd282405..4409550213506843470d797f9186b0702da54d3b 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_0_t_0.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_0_t_0.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4befad3f970b4dd57e19f39d74a6b2f9c3fa42728e654c78edb932c5de8c1a14 +oid sha256:ce5ae75e16b2a052a1770a327bf5319b2c94d76d4958d440568335ff5e7db6f4 size 2476 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_104_t_2000.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_104_t_2000.000000.vtu index 4ae6330477f943b63b4d9566753d299baf8429d2..18d4102367eeb42afe7ab0586f9100575ccaa87c 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_104_t_2000.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_104_t_2000.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e9765b0e0fb83644fdb0c8d7687fb2beb8639d7c549d6d4b92c51c4a83a9d0cd +oid sha256:e1d56278dda21f9da9537dae729a3c6a14cdcaaf57ed78f901554c54ddde6ecb size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_19_t_318.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_19_t_318.000000.vtu index af12589b97d9b46ea76fe1b65c674378ec80813c..21135e9e1747a69b03d8a1dca003ede3b061c796 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_19_t_318.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_19_t_318.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5d644f7df5d9f857371a46fd27d67859b34c54c6b93f61decd0c7c7a197069bd +oid sha256:3c3db19b49b79580fabb25b3b10c81def821efbeb582c3f7ce870bf771ddf90f size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_1_t_1.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_1_t_1.000000.vtu index 560965d4b613b8c7e77888e607421f229ee395fa..33afd34010d38e6a642f8a9b9d4efc9e4b851075 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_1_t_1.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_1_t_1.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0b4d9d9d8428c5c03652b25dcc1a7da64e569602752d046a18838e1d67932f37 +oid sha256:38742b09718db3c99747422ad34e4dfa67e1cb63ec54b3ebeb17f428995d6d93 size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_29_t_518.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_29_t_518.000000.vtu index 56e8725afbc37aeca12b0a169ff281783bcb4ab2..8a8e1dc75559608c6b5eabff3cf693ef74b3ef0e 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_29_t_518.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_29_t_518.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6c97ab8835a758ac9e9e02b1ce5f5d1763a8487e1bcc9b5d19767d5a2fb6b012 -size 2496 +oid sha256:adeacc892584100b27044fbcf8ff419256835d06ea72e0f1691a446c917845d5 +size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_2_t_3.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_2_t_3.000000.vtu index df58b5769e47c1034b26b094c3eef5528ff34c3e..64a4b199dc75c4ae9231bc4f26f4764256f15da3 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_2_t_3.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_2_t_3.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:25218233248c1ec5a4564451c65603803d6d18459cc2baaf188dd8fc01e88ff6 +oid sha256:8c0187e49d557531f9184e179f5db2c3814b0f1030ef3868d2cab235cb199a8f size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_39_t_718.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_39_t_718.000000.vtu index 7ca6772bf339c888bbc2b4fe98b8017ad2eef6c2..7356fe114e07deffea35fa16b3cb6f30bb584b37 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_39_t_718.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_39_t_718.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89fde240964ae3ea32f088ac2a07e635914b3d7fd7cd36749599eedc5c45ae5e +oid sha256:1e4c10213abe91e5ebf3814ee4d458b76b5804c48bc02a6a9a4fc40401ecc40d size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_3_t_8.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_3_t_8.000000.vtu index 47873236410b76f1cc0685549ddedb5d480b3f57..3b7ee3dd77649e1a3d6777178acf1b9c13b59327 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_3_t_8.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_3_t_8.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:2271930836d71ea6f6024c08e0874d09303b704d65bd8b853aaa11a6ea61c701 +oid sha256:3f6e5c86d062ff8c02aedfea09aa566635ad407f98e06d4646b7173e20c39d84 size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_49_t_918.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_49_t_918.000000.vtu index 4d55b49cec2680359aac9884d63c63b8f09fc077..1c0a693ff743240f159449a57e3b61470480d3bc 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_49_t_918.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_49_t_918.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:646b642805d743189038640779cc5ff0539d65a757c3a90feacab1ba5cced713 -size 2496 +oid sha256:e23c4e5ae19931e64dfa957a981bbad7d9ff495fcd9ac63ced2fc31ee9ea3488 +size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_4_t_18.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_4_t_18.000000.vtu index 8bae79c1838ba7bd6b0d32350831cc0dea0fc473..fa380ec1057760487bf74696ebe0f9c9c821c7f5 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_4_t_18.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_4_t_18.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:08eb8639e1e08a73bef2968f0514ea14fd13618b4c267525d42c1c212db27405 +oid sha256:1c085b4d36370bac6bcdef356463e7921884e62dc8a3e0ebb6f9e5acf01750ca size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_59_t_1118.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_59_t_1118.000000.vtu index 72156629a87dd36768681841ec0bb8949a48c04b..292f548780308320b2f40c339a27d90209c5e8a5 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_59_t_1118.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_59_t_1118.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3a37ee6c6a888f8d11b150d3e116f75291b02d8c8b3ba9f62903391d243f6d72 -size 2496 +oid sha256:8768f8721f225095f63a5c66de79723ec34cb6df54eeacc7a78be599fff97409 +size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_5_t_38.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_5_t_38.000000.vtu index 7c1194fad4f11b63d722513d196355b8159bbaa8..2094c0b9ca555bbf09bfaae9dc33968ba4e7e2aa 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_5_t_38.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_5_t_38.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:93e8f493bf99f0c6d37f3bcdd1901d388f4175300d8a69fd676f2add271b4c3c +oid sha256:8394d3d9f4e1cf71942a5456f0f1b88a77a9363841a330968218c8829d2ef8f4 size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_69_t_1318.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_69_t_1318.000000.vtu index 37a1a53927a5aa639be1d6e10641b6fddfd760e2..954485411f3ecb6723e44e883b184921585e8079 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_69_t_1318.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_69_t_1318.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b654a49c05b69c5f463b9a9231d86dd26d1f8f2c2f374eff344c8ed56937fe2d -size 2500 +oid sha256:7d0df3f5c88b44a4acdab19b9b4e61f796527b0b950859f504a108320601f33a +size 2496 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_6_t_58.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_6_t_58.000000.vtu index 61f5cd22e4570533f72370a410fb2f170ca0a0d2..3d64b6b478543245ee030033f460204ff6976246 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_6_t_58.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_6_t_58.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5729b4860a1a03db62ca7c7f766e6919a92987294d4ae2bda767bec617bdb227 -size 2500 +oid sha256:6a36827be4c52cf4457adf3e97cdc8b7ff43ad59f47a83cab9298dd625af26f2 +size 2496 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_79_t_1518.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_79_t_1518.000000.vtu index 5f760a62d3ba5ecb82541771393367862010ae3d..b11209e6f69846718b3a98d3f24d72185fa3f2f0 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_79_t_1518.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_79_t_1518.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a4905ac78e83b31fb2311280bb7acf55cb74d024a9affa88a366cb19b5f4af37 +oid sha256:a93b67bba798e66515981399afa72384d7b7727e3bf66626aaa0baa739ea4b48 size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_7_t_78.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_7_t_78.000000.vtu index 9671b445465b3e51d7516633ce0323a90a51e969..2d31bdf23095613bc1fe29e377da7037e8a33b38 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_7_t_78.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_7_t_78.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b5734108cff14b49555f025f085ea3481de46aca6c4479f2a31e5be70d42db15 +oid sha256:88da86aeefe84f6f870fd0583063b58e6cbfcf3b139f92743c2e591db7ae7d50 size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_89_t_1718.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_89_t_1718.000000.vtu index 82e5d400704f44173c5a887fd0acf131fe1a3ff2..0176a3616305132117867115b636239157c79e9a 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_89_t_1718.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_89_t_1718.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a9c09914cc1e6eb8ed594abea928e8cc46f92b9afb828f179ec6ef583e3373f4 +oid sha256:e092ab4963bebe2697404f509babf4ec951846a4f8c7151fed0c04365edd39e2 size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_8_t_98.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_8_t_98.000000.vtu index a803d6d8904550df0aa17dd6e163f4973420c97c..d08467eb136662472a43ed3861bcb1801cd8a3b5 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_8_t_98.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_8_t_98.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:424aed4c2840559f23d4c22ca870f1da7370614237af584f36453eb9e53a2631 +oid sha256:33ec54d5dcdd1bbe773cd23b2cc5250b9aa61d608d7b4e884efde081e889e421 size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_99_t_1918.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_99_t_1918.000000.vtu index fe60c46d50cd60c4a2fc2ea0d3becbcd91b2fe6c..7d0bbdf43b142d6ba37afa1621dec22460b86b15 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_99_t_1918.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_99_t_1918.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8c03af6cb95efab765cd33826a5393723e1a37a2299c9a880e08711ca4d46e12 +oid sha256:daefb40573cfd302e1be0f0452b080069c1dfd4e92d58eb44452befcb7264a46 size 2500 diff --git a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_9_t_118.000000.vtu b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_9_t_118.000000.vtu index 6381a8c8398c5a98f407ef9074000f9bf098db46..5818054ca44dd218d8b5dfcd6a70f64b45713662 100644 --- a/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_9_t_118.000000.vtu +++ b/Tests/Data/RichardsMechanics/Richards_2d_geometry_OBSERVATION_POINT_pcs_0_ts_9_t_118.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:23bddfe03e6ad3f20e2f5b7592415000626e2fe527c7456515bb7a78f48dd1e1 +oid sha256:d6c16091589eb7703bb150fbcd92216220636c020f790cb2387de64d153857d1 size 2500 diff --git a/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10.prj b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10.prj new file mode 100644 index 0000000000000000000000000000000000000000..c4a97616b46712519046fe241e056bae38ccd023 --- /dev/null +++ b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10.prj @@ -0,0 +1,282 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<OpenGeoSysProject> + <mesh>square_1x1_quad_1e0.vtu</mesh> + <geometry>square_1x1.gml</geometry> + <processes> + <process> + <name>RM</name> + <type>RICHARDS_MECHANICS</type> + <integration_order>2</integration_order> + <dimension>2</dimension> + <constitutive_relation> + <type>LinearElasticIsotropic</type> + <youngs_modulus>E</youngs_modulus> + <poissons_ratio>nu</poissons_ratio> + </constitutive_relation> + <process_variables> + <displacement>displacement</displacement> + <pressure>pressure</pressure> + </process_variables> + <secondary_variables> + <secondary_variable internal_name="sigma" output_name="sigma"/> + <secondary_variable internal_name="epsilon" output_name="epsilon"/> + <secondary_variable internal_name="velocity" output_name="velocity"/> + <secondary_variable internal_name="saturation" output_name="saturation"/> + </secondary_variables> + <specific_body_force>0 0</specific_body_force> + </process> + </processes> + <media> + <medium> + <phases> + <phase> + <type>AqueousLiquid</type> + <properties> + <property> + <name>bulk_modulus</name> + <type>Constant</type> + <value>2e9</value> + </property> + <property> + <name>viscosity</name> + <type>Constant</type> + <value>1e-3</value> + </property> + <property> + <name>density</name> + <type>Constant</type> + <value>1e3</value> + </property> + </properties> + </phase> + <phase> + <type>Solid</type> + <properties> + <property> + <name>density</name> + <type>Constant</type> + <value>2.6e3</value> + </property> + <property> + <name>bulk_modulus</name> + <type>Constant</type> + <value>30e9</value> + </property> + <property> + <name>biot_coefficient</name> + <type>Constant</type> + <value>1</value> + </property> + <property> + <name>porosity</name> + <type>Constant</type> + <value>0.5</value> + </property> + <property> + <name>permeability</name> + <type>Constant</type> + <value>1e-12</value> + </property> + </properties> + </phase> + </phases> + <properties> + <property> + <name>saturation</name> + <type>SaturationVanGenuchten</type> + <residual_liquid_saturation>0.0</residual_liquid_saturation> + <residual_gas_saturation>0</residual_gas_saturation> + <exponent>0.41176</exponent> + <p_b>1e4</p_b> + </property> + <property> + <name>relative_permeability</name> + <type>RelativePermeabilityVanGenuchten</type> + <residual_liquid_saturation>0</residual_liquid_saturation> + <residual_gas_saturation>0</residual_gas_saturation> + <exponent>0.789029535864979</exponent> + <minimum_relative_permeability_liquid>1e-12</minimum_relative_permeability_liquid> + </property> + <property> + <name>bishops_effective_stress</name> + <type>BishopsPowerLaw</type> + <exponent>1</exponent> + </property> + <property> + <name>reference_temperature</name> + <type>Constant</type> + <value>293.15</value> + </property> + </properties> + </medium> + </media> + <time_loop> + <processes> + <process ref="RM"> + <nonlinear_solver>basic_newton</nonlinear_solver> + <convergence_criterion> + <type>PerComponentDeltaX</type> + <norm_type>NORM2</norm_type> + <abstols>1e-14 1e-16 1e-16</abstols> + </convergence_criterion> + <time_discretization> + <type>BackwardEuler</type> + </time_discretization> + <time_stepping> + <type>FixedTimeStepping</type> + <t_initial>0</t_initial> + <t_end>10</t_end> + <timesteps> + <pair> + <repeat>10</repeat> + <delta_t>1</delta_t> + </pair> + </timesteps> + </time_stepping> + </process> + </processes> + <output> + <type>VTK</type> + <prefix>alternative_mass_balance_anzInterval_10</prefix> + <timesteps> + <pair> + <repeat>50000</repeat> + <each_steps>1</each_steps> + </pair> + </timesteps> + <variables> + <variable>displacement</variable> + <variable>pressure</variable> + <variable>sigma</variable> + <variable>epsilon</variable> + <variable>velocity</variable> + <variable>saturation</variable> + </variables> + </output> + </time_loop> + <parameters> + <!-- Mechanics --> + <parameter> + <name>E</name> + <type>Constant</type> + <value>1e9</value> + </parameter> + <parameter> + <name>nu</name> + <type>Constant</type> + <value>0.3</value> + </parameter> + <!-- Model parameters --> + <parameter> + <name>displacement_ic</name> + <type>Constant</type> + <values>0 0</values> + </parameter> + <parameter> + <name>pressure_ic</name> + <type>Constant</type> + <values>0</values> + </parameter> + <parameter> + <name>displacement_bc</name> + <type>Constant</type> + <value>0</value> + </parameter> + <parameter> + <name>ScaleFactor</name> + <type>Constant</type> + <value>1</value> + </parameter> + <parameter> + <name>pressure_bc</name> + <type>CurveScaled</type> + <curve>pressure_ramp</curve> + <parameter>ScaleFactor</parameter> + </parameter> + </parameters> + <curves> + <curve> + <name>pressure_ramp</name> + <coords>0 10</coords> + <values>0 -1e6</values> + </curve> + </curves> + <process_variables> + <process_variable> + <name>displacement</name> + <components>2</components> + <order>1</order> + <initial_condition>displacement_ic</initial_condition> + <boundary_conditions> + <boundary_condition> + <geometrical_set>square_1x1_geometry</geometrical_set> + <geometry>left</geometry> + <type>Dirichlet</type> + <component>0</component> + <parameter>displacement_bc</parameter> + </boundary_condition> + <boundary_condition> + <geometrical_set>square_1x1_geometry</geometrical_set> + <geometry>right</geometry> + <type>Dirichlet</type> + <component>0</component> + <parameter>displacement_bc</parameter> + </boundary_condition> + <boundary_condition> + <geometrical_set>square_1x1_geometry</geometrical_set> + <geometry>bottom</geometry> + <type>Dirichlet</type> + <component>1</component> + <parameter>displacement_bc</parameter> + </boundary_condition> + <boundary_condition> + <geometrical_set>square_1x1_geometry</geometrical_set> + <geometry>top</geometry> + <type>Dirichlet</type> + <component>1</component> + <parameter>displacement_bc</parameter> + </boundary_condition> + </boundary_conditions> + </process_variable> + <process_variable> + <name>pressure</name> + <components>1</components> + <order>1</order> + <initial_condition>pressure_ic</initial_condition> + <boundary_conditions> + <boundary_condition> + <geometrical_set>square_1x1_geometry</geometrical_set> + <geometry>left</geometry> + <type>Dirichlet</type> + <parameter>pressure_bc</parameter> + </boundary_condition> + <boundary_condition> + <geometrical_set>square_1x1_geometry</geometrical_set> + <geometry>right</geometry> + <type>Dirichlet</type> + <parameter>pressure_bc</parameter> + </boundary_condition> + </boundary_conditions> + </process_variable> + </process_variables> + <nonlinear_solvers> + <nonlinear_solver> + <name>basic_newton</name> + <type>Newton</type> + <max_iter>50</max_iter> + <linear_solver>general_linear_solver</linear_solver> + </nonlinear_solver> + </nonlinear_solvers> + <linear_solvers> + <linear_solver> + <name>general_linear_solver</name> + <eigen> + <solver_type>SparseLU</solver_type> + <scaling>true</scaling> + <!-- + <solver_type>PardisoLU</solver_type> + --> + </eigen> + </linear_solver> + </linear_solvers> +</OpenGeoSysProject> diff --git a/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_0_t_0.000000.vtu b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_0_t_0.000000.vtu new file mode 100644 index 0000000000000000000000000000000000000000..f9923f170bbd46e366fc858db73929eabdf83a22 --- /dev/null +++ b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_0_t_0.000000.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:301dfce63db69be311a4275473d08d80d4737c69532fc3d120e3fd29b4e42a0d +size 4480 diff --git a/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_10_t_10.000000.vtu b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_10_t_10.000000.vtu new file mode 100644 index 0000000000000000000000000000000000000000..d8da16d055cf1b38f25e75143430e86b363d6ed2 --- /dev/null +++ b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_10_t_10.000000.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80b5b30988595fc011be94394b154ceb310707249c23fc3b0b5a67c5fc5a8d95 +size 4572 diff --git a/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_1_t_1.000000.vtu b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_1_t_1.000000.vtu new file mode 100644 index 0000000000000000000000000000000000000000..ff43f7fc0c11972c6b2c1ca473f241d3230b1198 --- /dev/null +++ b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_1_t_1.000000.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f89aee26f8d8c1c4cddb15e8d8956a24040f2aad13f720a94119cf0c0cc17c1 +size 4552 diff --git a/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_2_t_2.000000.vtu b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_2_t_2.000000.vtu new file mode 100644 index 0000000000000000000000000000000000000000..e592fa4d33e37505080ef16aa801689ac320d0c4 --- /dev/null +++ b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_2_t_2.000000.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5773c7475344d09a7a1474bd2a7a51fe0e329d7e72971a903a764257fb9a8c9a +size 4556 diff --git a/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_3_t_3.000000.vtu b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_3_t_3.000000.vtu new file mode 100644 index 0000000000000000000000000000000000000000..c69d618d4acde5870a5b77ccaa6091c09cc10706 --- /dev/null +++ b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_3_t_3.000000.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e3dac6479b89ba661749569f5e8287d733240e23e4d141cf130acfe29906bfa +size 4568 diff --git a/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_4_t_4.000000.vtu b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_4_t_4.000000.vtu new file mode 100644 index 0000000000000000000000000000000000000000..e2172f7161681d419725db5867cc8bbb68f52dd6 --- /dev/null +++ b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_4_t_4.000000.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a045a983e557cd003b7557e7203f06d62356ad52df6bf4ca8d16aa25a2918b +size 4552 diff --git a/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_5_t_5.000000.vtu b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_5_t_5.000000.vtu new file mode 100644 index 0000000000000000000000000000000000000000..2ddfb183794d4338b908243714eb276bf8e9d7d7 --- /dev/null +++ b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_5_t_5.000000.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6272cc161ef73d798e27359550698f4b3d9e677651d14b01826f130bb1807e1c +size 4560 diff --git a/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_6_t_6.000000.vtu b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_6_t_6.000000.vtu new file mode 100644 index 0000000000000000000000000000000000000000..ce07167329c8233c0ff63cf5e0de5853c3e6ffa8 --- /dev/null +++ b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_6_t_6.000000.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cbc7ee3fc17c9fc002067afb7d357917f5aef1fa2e3927b9d3b8939322afcb +size 4568 diff --git a/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_7_t_7.000000.vtu b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_7_t_7.000000.vtu new file mode 100644 index 0000000000000000000000000000000000000000..d44b36ce6016134dac8e8d27f14b850c9f53e0b3 --- /dev/null +++ b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_7_t_7.000000.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0215568dbbfa9e8d2b8ba639baf65299931d85533286b02027283e17a31efa22 +size 4580 diff --git a/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_8_t_8.000000.vtu b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_8_t_8.000000.vtu new file mode 100644 index 0000000000000000000000000000000000000000..c6e964315883d1f8aa1212a7087896e9281f9f34 --- /dev/null +++ b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_8_t_8.000000.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76a615918d71af85d5d91bb48b2857f4f8021091a2e04bbccba87490dab9a300 +size 4552 diff --git a/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_9_t_9.000000.vtu b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_9_t_9.000000.vtu new file mode 100644 index 0000000000000000000000000000000000000000..4a37daf251107303bb52f895eb5d041b7342da58 --- /dev/null +++ b/Tests/Data/RichardsMechanics/alternative_mass_balance_anzInterval_10_pcs_0_ts_9_t_9.000000.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb0e090b2f0aa1dab3a73d9a7056d31e3961333601618dcbe41ed425f2aaa678 +size 4564 diff --git a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_102_t_3.500000.vtu b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_102_t_3.500000.vtu index 7d09c92d96452b636cc5c6feb01137a313be7282..94ad97849eac3859d54070b6aaf2e98da9fb6ef8 100644 --- a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_102_t_3.500000.vtu +++ b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_102_t_3.500000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f26c5d605323a0e3b37a8c2605c766b28c0c2b77fa7acd99607d7dbf6e38cb44 -size 41695 +oid sha256:b4f0179164c0b802f05f35043b2e92cc29c3e319fe78e3a9cbe2b0f940b6a856 +size 43275 diff --git a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_107_t_4.000000.vtu b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_107_t_4.000000.vtu index 14a337cd8d17d31d492412319efc6e5b5407be06..d3200c2162b4a5bd53691f89587dc5feb67cb5a4 100644 --- a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_107_t_4.000000.vtu +++ b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_107_t_4.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f6a5d69bb0dca20f58f8d02027fa8bb0ed2917ea973abc2ce54a3712965e8517 -size 33323 +oid sha256:76a940b32d0a60288cf8f68f9db9a494900c5abca4f207d559ea601273e5c9f8 +size 36307 diff --git a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_14_t_0.500000.vtu b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_14_t_0.500000.vtu index 48f95fc1f33cf774cda513b80bd415d3e2f87d17..d2a5a37ff89200161884ddc11369cb6490e652ec 100644 --- a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_14_t_0.500000.vtu +++ b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_14_t_0.500000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f3d5425d8c938abfb33846dd4c51c88d23c4ec5bbde4d1fc9d97b25395802e0e -size 35327 +oid sha256:6fb916473b5b838447d94167f586f40f84ff54c08e8974935425929583b18d4c +size 35995 diff --git a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_19_t_1.000000.vtu b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_19_t_1.000000.vtu index ba2ad126737039d24b58143b6ea2a9eff6886ede..3ddb9bcae3dd9401dc8dfb52ba31f66250dafc6d 100644 --- a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_19_t_1.000000.vtu +++ b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_19_t_1.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:27e40d9e569ad941a3ce02262ed04990a0f517de8db558cdce473a31b47754db -size 35443 +oid sha256:b856d8338ced6fb36cd39656ac8755c71aa3514c500caa36f45580d2758fdf95 +size 36543 diff --git a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_33_t_1.500000.vtu b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_33_t_1.500000.vtu index 87812fda91ab529dbb794eedfe96c151438a559c..f434ed5e097cc988fd58402f1976004322422746 100644 --- a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_33_t_1.500000.vtu +++ b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_33_t_1.500000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5e0fec19b9710553cdb0a563818bde598a232594a12f320d2e0de4cab61c2e43 -size 38291 +oid sha256:99dcaeef51a8a27dccbdc9eecdc89094915a76ba85a44532bd7f03483ed6cd2e +size 38771 diff --git a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_38_t_2.000000.vtu b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_38_t_2.000000.vtu index 5e43004f7e675adf1e1e4352fded83604bd3c2da..84a3ad9ad4cb173ba8091167c091729451e27852 100644 --- a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_38_t_2.000000.vtu +++ b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_38_t_2.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5c1100c371c52a51a908842c5004fc181d52eb40d364215c17dc2491d953ada6 -size 40387 +oid sha256:b3373890c81c7474b5c89389cfbd816b99a15939b6d5f4f58375ea936ced4b99 +size 40935 diff --git a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_63_t_2.500000.vtu b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_63_t_2.500000.vtu index 69de73f7fe4ea52dee17e953eb0375238e71a25b..f68642098077f5cf8a2cf22fa103422c66aa96af 100644 --- a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_63_t_2.500000.vtu +++ b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_63_t_2.500000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c7e23014fbef27ea808d175d0d75ec12ccf9dc77821376b3c5813f83ebc20084 -size 39571 +oid sha256:479dae0d5f3a0bbb3a1fa8d6ec6f970cd3528c45fe9aad9a2f27432ea961a9da +size 40691 diff --git a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_88_t_3.000000.vtu b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_88_t_3.000000.vtu index b993defb8a2dae4f053eeab97b3f7cd8412ad245..23a90d70fe31f3aa0754b4176f3cfd084ab12f84 100644 --- a/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_88_t_3.000000.vtu +++ b/Tests/Data/RichardsMechanics/deformation_dependent_porosity_swelling_pcs_0_ts_88_t_3.000000.vtu @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1c2678f3a72738406491aeac460cfec7ad4a1994e85ef8f367f83c7c6ff866d0 -size 40079 +oid sha256:732bcb89355c9f6bbc907c47ab887d02cf5c941737b28ca86c12fc8bfe49aeaa +size 41343 diff --git a/Tests/Data/RichardsMechanics/square_1x1_quad_1e0.vtu b/Tests/Data/RichardsMechanics/square_1x1_quad_1e0.vtu new file mode 100644 index 0000000000000000000000000000000000000000..2e6fc2e4412db4a41dd4be8bf0f0f0b3f2d94ea2 --- /dev/null +++ b/Tests/Data/RichardsMechanics/square_1x1_quad_1e0.vtu @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd87128b2c36d59cff91fd9d072f97be311ecc5119a6e607fd58e318e25b441c +size 1578