diff --git a/test/multidomain/embedded/1d3d/1p2c_richards2c/CMakeLists.txt b/test/multidomain/embedded/1d3d/1p2c_richards2c/CMakeLists.txt index 9d4667a2d8db88d6c1cf1b2601426d15d924b51c..ecb2cf3ccb35edab75d84b5e57976dfe0c50d710 100644 --- a/test/multidomain/embedded/1d3d/1p2c_richards2c/CMakeLists.txt +++ b/test/multidomain/embedded/1d3d/1p2c_richards2c/CMakeLists.txt @@ -1,12 +1,13 @@ -dune_add_test(NAME test_embedded_1d3d_1p2c_richards2c - SOURCES test_1p2c_richards2c.cc +dune_add_test(NAME test_md_embedded1d3d_1p2c_richards2c + SOURCES main.cc CMAKE_GUARD "( dune-foamgrid_FOUND AND HAVE_UG )" COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMD_ARGS --script fuzzy - --files ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1d3d_1p2c_richards2c_1d-reference.vtp - ${CMAKE_CURRENT_BINARY_DIR}/test_soilroot_1d-00003.vtp - ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1d3d_1p2c_richards2c_3d-reference.vtu - ${CMAKE_CURRENT_BINARY_DIR}/test_soilroot_3d-00003.vtu - --command "${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p2c_richards2c test_1p2c_richards2c.input") -dune_symlink_to_source_files(FILES "test_1p2c_richards2c.input") + --files ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p2c_richards2c_1d-reference.vtp + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p2c_richards2c_1d-00003.vtp + ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p2c_richards2c_3d-reference.vtu + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p2c_richards2c_3d-00003.vtu + --command "${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p2c_richards2c params.input + -Vtk.OutputName test_md_embedded1d3d_1p2c_richards2c") +dune_symlink_to_source_files(FILES "params.input") set(CMAKE_BUILD_TYPE Release) diff --git a/test/multidomain/embedded/1d3d/1p2c_richards2c/test_1p2c_richards2c.cc b/test/multidomain/embedded/1d3d/1p2c_richards2c/main.cc similarity index 99% rename from test/multidomain/embedded/1d3d/1p2c_richards2c/test_1p2c_richards2c.cc rename to test/multidomain/embedded/1d3d/1p2c_richards2c/main.cc index 4ad28950767e38ce49af59fdb16e54a08b2adda0..0c38779aee7bc2d336158d5b11fb5d3afecc7af8 100644 --- a/test/multidomain/embedded/1d3d/1p2c_richards2c/test_1p2c_richards2c.cc +++ b/test/multidomain/embedded/1d3d/1p2c_richards2c/main.cc @@ -47,8 +47,8 @@ #include <dumux/multidomain/embedded/couplingmanager1d3d.hh> #include <dumux/multidomain/embedded/mixeddimensionglue.hh> -#include "rootproblem.hh" -#include "soilproblem.hh" +#include "problem_root.hh" +#include "problem_soil.hh" namespace Dumux { namespace Properties { diff --git a/test/multidomain/embedded/1d3d/1p2c_richards2c/test_1p2c_richards2c.input b/test/multidomain/embedded/1d3d/1p2c_richards2c/params.input similarity index 76% rename from test/multidomain/embedded/1d3d/1p2c_richards2c/test_1p2c_richards2c.input rename to test/multidomain/embedded/1d3d/1p2c_richards2c/params.input index 58fbd978d54eab5a74f4de07305a81ef78d05b44..48d97f0393964b551b1d4e772cb9d5a063d0fc09 100644 --- a/test/multidomain/embedded/1d3d/1p2c_richards2c/test_1p2c_richards2c.input +++ b/test/multidomain/embedded/1d3d/1p2c_richards2c/params.input @@ -19,20 +19,21 @@ Refinement = 0 LocalRefinement = 1 [Problem] -Name = test_soilroot ContaminantMoleFraction = 3e-7 OutFile = "tracermass_fine.out" EnableVtkOutput = true EnableGravity = true InitTopSaturation = 0.3 -[Soil.SpatialParams] -Permeability = 2.57e-12 # [m^2] -Porosity = 0.4 # [-] +[Soil] +SpatialParams.Permeability = 2.57e-12 # [m^2] +SpatialParams.Porosity = 0.4 # [-] +Problem.Name = 3d -[Root.SpatialParams] -Kx = 5.0968e-17 -Kr = 2.04e-13 +[Root] +SpatialParams.Kx = 5.0968e-17 +SpatialParams.Kr = 2.04e-13 +Problem.Name = 1d [Component] LiquidDiffusionCoefficient = 2.3e-9 @@ -49,3 +50,6 @@ PriVarMagnitude = 1e6 1 [LinearSolver] MaxIterations = 20000 Verbosity = 0 + +[Vtk] +OutputName = test_md_embedded1d3d_1p2c_richards2c diff --git a/test/multidomain/embedded/1d3d/1p2c_richards2c/rootproblem.hh b/test/multidomain/embedded/1d3d/1p2c_richards2c/problem_root.hh similarity index 98% rename from test/multidomain/embedded/1d3d/1p2c_richards2c/rootproblem.hh rename to test/multidomain/embedded/1d3d/1p2c_richards2c/problem_root.hh index c1616e3f1bb3b357961db0ce8e7b442dc8f316d3..b0b23442182d7b7528c6c86df649f62970800c33 100644 --- a/test/multidomain/embedded/1d3d/1p2c_richards2c/rootproblem.hh +++ b/test/multidomain/embedded/1d3d/1p2c_richards2c/problem_root.hh @@ -37,7 +37,7 @@ #include <dumux/material/components/constant.hh> #include <dumux/material/fluidsystems/liquidphase2c.hh> -#include "rootspatialparams.hh" +#include "spatialparams_root.hh" namespace Dumux { // forward declaration @@ -122,11 +122,11 @@ public: RootProblem(std::shared_ptr<const FVGridGeometry> fvGridGeometry, std::shared_ptr<SpatialParams> spatialParams, std::shared_ptr<CouplingManager> couplingManager) - : ParentType(fvGridGeometry, spatialParams) + : ParentType(fvGridGeometry, spatialParams, "Root") , couplingManager_(couplingManager) { //read parameters from input file - name_ = getParam<std::string>("Problem.Name") + "_1d"; + name_ = getParam<std::string>("Vtk.OutputName") + "_" + getParamFromGroup<std::string>(this->paramGroup(), "Problem.Name"); transpirationRate_ = getParam<Scalar>("BoundaryConditions.TranspirationRate"); initPressure_ = getParam<Scalar>("BoundaryConditions.InitialRootPressure"); } diff --git a/test/multidomain/embedded/1d3d/1p2c_richards2c/soilproblem.hh b/test/multidomain/embedded/1d3d/1p2c_richards2c/problem_soil.hh similarity index 98% rename from test/multidomain/embedded/1d3d/1p2c_richards2c/soilproblem.hh rename to test/multidomain/embedded/1d3d/1p2c_richards2c/problem_soil.hh index 8f906bff4032c911dfccaa029dc933bb126cb64a..ba82e7a42b2f3eb4b33c19f10a9f582d962f0f93 100644 --- a/test/multidomain/embedded/1d3d/1p2c_richards2c/soilproblem.hh +++ b/test/multidomain/embedded/1d3d/1p2c_richards2c/problem_soil.hh @@ -42,7 +42,7 @@ #include <dumux/material/components/constant.hh> #include <dumux/material/fluidsystems/liquidphase2c.hh> -#include "soilspatialparams.hh" +#include "spatialparams_soil.hh" namespace Dumux { @@ -124,11 +124,11 @@ public: SoilProblem(std::shared_ptr<const FVGridGeometry> fvGridGeometry, std::shared_ptr<CouplingManager> couplingManager) - : ParentType(fvGridGeometry) + : ParentType(fvGridGeometry, "Soil") , couplingManager_(couplingManager) { //read parameters from input file - name_ = getParam<std::string>("Problem.Name") + "_3d"; + name_ = getParam<std::string>("Vtk.OutputName") + "_" + getParamFromGroup<std::string>(this->paramGroup(), "Problem.Name"); contaminantMoleFraction_ = getParam<Scalar>("Problem.ContaminantMoleFraction"); // for initial conditions diff --git a/test/multidomain/embedded/1d3d/1p2c_richards2c/rootspatialparams.hh b/test/multidomain/embedded/1d3d/1p2c_richards2c/spatialparams_root.hh similarity index 100% rename from test/multidomain/embedded/1d3d/1p2c_richards2c/rootspatialparams.hh rename to test/multidomain/embedded/1d3d/1p2c_richards2c/spatialparams_root.hh diff --git a/test/multidomain/embedded/1d3d/1p2c_richards2c/soilspatialparams.hh b/test/multidomain/embedded/1d3d/1p2c_richards2c/spatialparams_soil.hh similarity index 100% rename from test/multidomain/embedded/1d3d/1p2c_richards2c/soilspatialparams.hh rename to test/multidomain/embedded/1d3d/1p2c_richards2c/spatialparams_soil.hh diff --git a/test/multidomain/embedded/1d3d/1p_1p/CMakeLists.txt b/test/multidomain/embedded/1d3d/1p_1p/CMakeLists.txt index b60d6cddff8e3e7634d78f2b94a899550c70f77d..7e2d693e229f918cb9e77e9696ac465133af779f 100644 --- a/test/multidomain/embedded/1d3d/1p_1p/CMakeLists.txt +++ b/test/multidomain/embedded/1d3d/1p_1p/CMakeLists.txt @@ -1,76 +1,76 @@ -dune_add_test(NAME test_embedded_1d3d_1p1p_tpfatpfa_average - SOURCES test_1p_1p.cc +dune_add_test(NAME test_md_embedded1d3d_1p1p_tpfatpfa_average + SOURCES main.cc COMPILE_DEFINITIONS BULKTYPETAG=TissueCC LOWDIMTYPETAG=BloodFlowCC COUPLINGMODE=EmbeddedCouplingMode::average COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMAKE_GUARD dune-foamgrid_FOUND CMD_ARGS --script fuzzy - --files ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1d3d_1p1p_tpfatpfa_average_1d.vtp - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p1p_tpfatpfa_average_1d-00001.vtp - ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1d3d_1p1p_tpfatpfa_average_3d.vtu - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p1p_tpfatpfa_average_3d-00001.vtu - --command "${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p1p_tpfatpfa_average test_1p_1p.input \ - -Problem.Name test_embedded_1d3d_1p1p_tpfatpfa_average") + --files ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p1p_tpfatpfa_average_1d-reference.vtp + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p1p_tpfatpfa_average_1d-00001.vtp + ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p1p_tpfatpfa_average_3d-reference.vtu + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p1p_tpfatpfa_average_3d-00001.vtu + --command "${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p1p_tpfatpfa_average params.input \ + -Vtk.OutputName test_md_embedded1d3d_1p1p_tpfatpfa_average") -dune_add_test(NAME test_embedded_1d3d_1p1p_boxtpfa_average - SOURCES test_1p_1p.cc +dune_add_test(NAME test_md_embedded1d3d_1p1p_boxtpfa_average + SOURCES main.cc COMPILE_DEFINITIONS BULKTYPETAG=TissueBox LOWDIMTYPETAG=BloodFlowCC COUPLINGMODE=EmbeddedCouplingMode::average COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMAKE_GUARD dune-foamgrid_FOUND CMD_ARGS --script fuzzy - --files ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1d3d_1p1p_tpfatpfa_average_1d.vtp - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p1p_boxtpfa_average_1d-00001.vtp - ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1d3d_1p1p_boxbox_average_3d.vtu - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p1p_boxtpfa_average_3d-00001.vtu - --command "${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p1p_boxtpfa_average test_1p_1p.input \ - -Problem.Name test_embedded_1d3d_1p1p_boxtpfa_average -Tissue.Grid.Cells \"19 19 19\"") + --files ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p1p_tpfatpfa_average_1d-reference.vtp + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p1p_boxtpfa_average_1d-00001.vtp + ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p1p_boxbox_average_3d-reference.vtu + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p1p_boxtpfa_average_3d-00001.vtu + --command "${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p1p_boxtpfa_average params.input \ + -Vtk.OutputName test_md_embedded1d3d_1p1p_boxtpfa_average -Tissue.Grid.Cells \"19 19 19\"") -dune_add_test(NAME test_embedded_1d3d_1p1p_tpfabox_average - SOURCES test_1p_1p.cc +dune_add_test(NAME test_md_embedded1d3d_1p1p_tpfabox_average + SOURCES main.cc COMPILE_DEFINITIONS BULKTYPETAG=TissueCC LOWDIMTYPETAG=BloodFlowBox COUPLINGMODE=EmbeddedCouplingMode::average COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMAKE_GUARD dune-foamgrid_FOUND CMD_ARGS --script fuzzy - --files ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1d3d_1p1p_boxbox_average_1d.vtp - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p1p_tpfabox_average_1d-00001.vtp - ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1d3d_1p1p_tpfatpfa_average_3d.vtu - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p1p_tpfabox_average_3d-00001.vtu - --command "${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p1p_tpfabox_average test_1p_1p.input \ - -Problem.Name test_embedded_1d3d_1p1p_tpfabox_average") + --files ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p1p_boxbox_average_1d-reference.vtp + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p1p_tpfabox_average_1d-00001.vtp + ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p1p_tpfatpfa_average_3d-reference.vtu + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p1p_tpfabox_average_3d-00001.vtu + --command "${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p1p_tpfabox_average params.input \ + -Vtk.OutputName test_md_embedded1d3d_1p1p_tpfabox_average") -dune_add_test(NAME test_embedded_1d3d_1p1p_boxbox_average - SOURCES test_1p_1p.cc +dune_add_test(NAME test_md_embedded1d3d_1p1p_boxbox_average + SOURCES main.cc COMPILE_DEFINITIONS BULKTYPETAG=TissueBox LOWDIMTYPETAG=BloodFlowBox COUPLINGMODE=EmbeddedCouplingMode::average COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMAKE_GUARD dune-foamgrid_FOUND CMD_ARGS --script fuzzy - --files ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1d3d_1p1p_boxbox_average_1d.vtp - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p1p_boxbox_average_1d-00001.vtp - ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1d3d_1p1p_boxbox_average_3d.vtu - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p1p_boxbox_average_3d-00001.vtu - --command "${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1d3d_1p1p_boxbox_average test_1p_1p.input \ - -Problem.Name test_embedded_1d3d_1p1p_boxbox_average -Tissue.Grid.Cells \"19 19 19\"") + --files ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p1p_boxbox_average_1d-reference.vtp + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p1p_boxbox_average_1d-00001.vtp + ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p1p_boxbox_average_3d-reference.vtu + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p1p_boxbox_average_3d-00001.vtu + --command "${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p1p_boxbox_average params.input \ + -Vtk.OutputName test_md_embedded1d3d_1p1p_boxbox_average -Tissue.Grid.Cells \"19 19 19\"") # make sure these configurations compile and run too -dune_add_test(NAME test_embedded_1d3d_1p1p_tpfatpfa_cylindersources - SOURCES test_1p_1p.cc +dune_add_test(NAME test_md_embedded1d3d_1p1p_tpfatpfa_cylindersources + SOURCES main.cc COMPILE_DEFINITIONS BULKTYPETAG=TissueCC LOWDIMTYPETAG=BloodFlowCC COUPLINGMODE=EmbeddedCouplingMode::cylindersources - COMMAND ./test_embedded_1d3d_1p1p_tpfatpfa_cylindersources + COMMAND ./test_md_embedded1d3d_1p1p_tpfatpfa_cylindersources CMAKE_GUARD dune-foamgrid_FOUND - CMD_ARGS test_1p_1p.input) + CMD_ARGS params.input) -dune_add_test(NAME test_embedded_1d3d_1p1p_tpfatpfa_line - SOURCES test_1p_1p.cc +dune_add_test(NAME test_md_embedded1d3d_1p1p_tpfatpfa_line + SOURCES main.cc COMPILE_DEFINITIONS BULKTYPETAG=TissueCC LOWDIMTYPETAG=BloodFlowCC COUPLINGMODE=EmbeddedCouplingMode::line - COMMAND ./test_embedded_1d3d_1p1p_tpfatpfa_line + COMMAND ./test_md_embedded1d3d_1p1p_tpfatpfa_line CMAKE_GUARD dune-foamgrid_FOUND - CMD_ARGS test_1p_1p.input) + CMD_ARGS params.input) -dune_add_test(NAME test_embedded_1d3d_1p1p_tpfatpfa_kernel - SOURCES test_1p_1p.cc +dune_add_test(NAME test_md_embedded1d3d_1p1p_tpfatpfa_kernel + SOURCES main.cc COMPILE_DEFINITIONS BULKTYPETAG=TissueCC LOWDIMTYPETAG=BloodFlowCC COUPLINGMODE=EmbeddedCouplingMode::kernel - COMMAND ./test_embedded_1d3d_1p1p_tpfatpfa_kernel + COMMAND ./test_md_embedded1d3d_1p1p_tpfatpfa_kernel CMAKE_GUARD dune-foamgrid_FOUND - CMD_ARGS test_1p_1p.input) + CMD_ARGS params.input) -dune_symlink_to_source_files(FILES "grids" "test_1p_1p.input") +dune_symlink_to_source_files(FILES "params.input") set(CMAKE_BUILD_TYPE Release) diff --git a/test/multidomain/embedded/1d3d/1p_1p/test_1p_1p.cc b/test/multidomain/embedded/1d3d/1p_1p/main.cc similarity index 99% rename from test/multidomain/embedded/1d3d/1p_1p/test_1p_1p.cc rename to test/multidomain/embedded/1d3d/1p_1p/main.cc index 93e29f7992ee1b2292ad1963b4e07d1238c19b7c..dd7260503e70f92ff6874737d5255270820fb45c 100644 --- a/test/multidomain/embedded/1d3d/1p_1p/test_1p_1p.cc +++ b/test/multidomain/embedded/1d3d/1p_1p/main.cc @@ -47,8 +47,8 @@ #include <dumux/multidomain/newtonsolver.hh> #include <dumux/multidomain/embedded/couplingmanager1d3d.hh> -#include "bloodflowproblem.hh" -#include "tissueproblem.hh" +#include "problem_bloodflow.hh" +#include "problem_tissue.hh" #include "l2norm.hh" // default to tpfa for both domains diff --git a/test/multidomain/embedded/1d3d/1p_1p/test_1p_1p.input b/test/multidomain/embedded/1d3d/1p_1p/params.input similarity index 85% rename from test/multidomain/embedded/1d3d/1p_1p/test_1p_1p.input rename to test/multidomain/embedded/1d3d/1p_1p/params.input index 05f4890bf2592b883286d93950a93e2d421c7a09..5ba10acd67acd6416889e946bd2c9a277f72d69c 100644 --- a/test/multidomain/embedded/1d3d/1p_1p/test_1p_1p.input +++ b/test/multidomain/embedded/1d3d/1p_1p/params.input @@ -13,12 +13,20 @@ LowerLeft = -1 -1 0 UpperRight = 1 1 1 Cells = 20 20 20 +[Vessel.Problem] +Name = 1d + +[Tissue.Problem] +Name = 3d + [Problem] -Name = test_1p1p_embedded NormIntegrationOrder = 2 NormExcludeInnerBulk = true EnableGravity = false +[Vtk] +OutputName = test_md_embedded1d3d_1p1p + [Component] LiquidKinematicViscosity = 1 # [m^2/s] LiquidDensity = 1 # [kg/m^3] diff --git a/test/multidomain/embedded/1d3d/1p_1p/bloodflowproblem.hh b/test/multidomain/embedded/1d3d/1p_1p/problem_bloodflow.hh similarity index 98% rename from test/multidomain/embedded/1d3d/1p_1p/bloodflowproblem.hh rename to test/multidomain/embedded/1d3d/1p_1p/problem_bloodflow.hh index 996f54442e38bbfa0fe8ab1996a9ffdf1fbea539..62fb5fc16f47ac12f230d46486d15494e6b44998 100644 --- a/test/multidomain/embedded/1d3d/1p_1p/bloodflowproblem.hh +++ b/test/multidomain/embedded/1d3d/1p_1p/problem_bloodflow.hh @@ -39,7 +39,7 @@ #include <dumux/material/components/constant.hh> #include <dumux/material/fluidsystems/1pliquid.hh> -#include "bloodflowspatialparams.hh" +#include "spatialparams_bloodflow.hh" namespace Dumux { // forward declaration @@ -106,11 +106,11 @@ class BloodFlowProblem : public PorousMediumFlowProblem<TypeTag> public: BloodFlowProblem(std::shared_ptr<const FVGridGeometry> fvGridGeometry, std::shared_ptr<CouplingManager> couplingManager) - : ParentType(fvGridGeometry) + : ParentType(fvGridGeometry, "Vessel") , couplingManager_(couplingManager) { //read parameters from input file - name_ = getParam<std::string>("Problem.Name") + "_1d"; + name_ = getParam<std::string>("Vtk.OutputName") + "_" + getParamFromGroup<std::string>(this->paramGroup(), "Problem.Name"); p_in_ = getParam<Scalar>("BoundaryConditions1D.PressureInput"); delta_p_ = getParam<Scalar>("BoundaryConditions1D.DeltaPressure"); exactPressure_.resize(this->fvGridGeometry().numDofs()); diff --git a/test/multidomain/embedded/1d3d/1p_1p/tissueproblem.hh b/test/multidomain/embedded/1d3d/1p_1p/problem_tissue.hh similarity index 98% rename from test/multidomain/embedded/1d3d/1p_1p/tissueproblem.hh rename to test/multidomain/embedded/1d3d/1p_1p/problem_tissue.hh index 31cc4bc8cc27fba7ab496a3cb020d7d7413839de..d47d0231b942fd795f2b57be0b2cc04d13e7f8b3 100644 --- a/test/multidomain/embedded/1d3d/1p_1p/tissueproblem.hh +++ b/test/multidomain/embedded/1d3d/1p_1p/problem_tissue.hh @@ -44,7 +44,7 @@ #include <dumux/material/components/constant.hh> #include <dumux/material/fluidsystems/1pliquid.hh> -#include "tissuespatialparams.hh" +#include "spatialparams_tissue.hh" namespace Dumux { @@ -114,11 +114,11 @@ class TissueProblem : public PorousMediumFlowProblem<TypeTag> public: TissueProblem(std::shared_ptr<const FVGridGeometry> fvGridGeometry, std::shared_ptr<CouplingManager> couplingManager) - : ParentType(fvGridGeometry) + : ParentType(fvGridGeometry, "Tissue") , couplingManager_(couplingManager) { //read parameters from input file - name_ = getParam<std::string>("Problem.Name") + "_3d"; + name_ = getParam<std::string>("Vtk.OutputName") + "_" + getParamFromGroup<std::string>(this->paramGroup(), "Problem.Name"); exactPressure_.resize(this->fvGridGeometry().numDofs()); for (const auto& element : elements(this->fvGridGeometry().gridView())) @@ -131,11 +131,6 @@ public: } } - /*! - * \name Problem parameters - */ - // \{ - /*! * \brief The problem name. * diff --git a/test/multidomain/embedded/1d3d/1p_1p/bloodflowspatialparams.hh b/test/multidomain/embedded/1d3d/1p_1p/spatialparams_bloodflow.hh similarity index 100% rename from test/multidomain/embedded/1d3d/1p_1p/bloodflowspatialparams.hh rename to test/multidomain/embedded/1d3d/1p_1p/spatialparams_bloodflow.hh diff --git a/test/multidomain/embedded/1d3d/1p_1p/tissuespatialparams.hh b/test/multidomain/embedded/1d3d/1p_1p/spatialparams_tissue.hh similarity index 100% rename from test/multidomain/embedded/1d3d/1p_1p/tissuespatialparams.hh rename to test/multidomain/embedded/1d3d/1p_1p/spatialparams_tissue.hh diff --git a/test/multidomain/embedded/1d3d/1p_richards/CMakeLists.txt b/test/multidomain/embedded/1d3d/1p_richards/CMakeLists.txt index a53a2ed002d4bb72b790a61bcbd715c386ed8b57..75788bc882b17230b2a495d5c2458ce562b506d0 100644 --- a/test/multidomain/embedded/1d3d/1p_richards/CMakeLists.txt +++ b/test/multidomain/embedded/1d3d/1p_richards/CMakeLists.txt @@ -1,27 +1,27 @@ -dune_add_test(NAME test_embedded_1p_richards_tpfatpfa - SOURCES test_1p_richards.cc +dune_add_test(NAME test_md_embedded1d3d_1p_richards_tpfatpfa + SOURCES main.cc COMPILE_DEFINITIONS SOILTYPETAG=SoilCC COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMAKE_GUARD dune-foamgrid_FOUND CMD_ARGS --script fuzzy - --files ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1p_richards_tpfa_1d.vtp - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1p_richards_tpfatpfa_1d-00004.vtp - ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1p_richards_tpfa_3d.vtu - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1p_richards_tpfatpfa_3d-00004.vtu - --command "${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1p_richards_tpfatpfa test_1p_richards.input \ - -Problem.Name test_embedded_1p_richards_tpfatpfa") + --files ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p_richards_tpfatpfa_1d-reference.vtp + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p_richards_tpfatpfa_1d-00004.vtp + ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p_richards_tpfatpfa_3d-reference.vtu + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p_richards_tpfatpfa_3d-00004.vtu + --command "${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p_richards_tpfatpfa params.input \ + -Vtk.OutputName test_md_embedded1d3d_1p_richards_tpfatpfa") -dune_add_test(NAME test_embedded_1p_richards_tpfabox - SOURCES test_1p_richards.cc +dune_add_test(NAME test_md_embedded1d3d_1p_richards_tpfabox + SOURCES main.cc COMPILE_DEFINITIONS SOILTYPETAG=SoilBox COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMAKE_GUARD dune-foamgrid_FOUND CMD_ARGS --script fuzzy - --files ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1p_richards_tpfa_1d.vtp - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1p_richards_tpfabox_1d-00004.vtp - ${CMAKE_SOURCE_DIR}/test/references/test_embedded_1p_richards_box_3d.vtu - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1p_richards_tpfabox_3d-00004.vtu - --command "${CMAKE_CURRENT_BINARY_DIR}/test_embedded_1p_richards_tpfabox test_1p_richards.input \ - -Problem.Name test_embedded_1p_richards_tpfabox") -dune_symlink_to_source_files(FILES "lupine.dgf" "test_1p_richards.input") + --files ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p_richards_tpfatpfa_1d-reference.vtp + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p_richards_tpfabox_1d-00004.vtp + ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded1d3d_1p_richards_tpfabox_3d-reference.vtu + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p_richards_tpfabox_3d-00004.vtu + --command "${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded1d3d_1p_richards_tpfabox params.input \ + -Vtk.OutputName test_md_embedded1d3d_1p_richards_tpfabox") +dune_symlink_to_source_files(FILES "params.input") set(CMAKE_BUILD_TYPE Release) diff --git a/test/multidomain/embedded/1d3d/1p_richards/test_1p_richards.cc b/test/multidomain/embedded/1d3d/1p_richards/main.cc similarity index 99% rename from test/multidomain/embedded/1d3d/1p_richards/test_1p_richards.cc rename to test/multidomain/embedded/1d3d/1p_richards/main.cc index f2244432248a62ba1f97e4b0d65c04b001b6cc69..b3d7eb4c86e59b3562b592f47c3f0a059fb1db6c 100644 --- a/test/multidomain/embedded/1d3d/1p_richards/test_1p_richards.cc +++ b/test/multidomain/embedded/1d3d/1p_richards/main.cc @@ -46,8 +46,8 @@ #include <dumux/multidomain/newtonsolver.hh> #include <dumux/multidomain/embedded/couplingmanager1d3d.hh> -#include "rootproblem.hh" -#include "soilproblem.hh" +#include "problem_root.hh" +#include "problem_soil.hh" namespace Dumux { namespace Properties { diff --git a/test/multidomain/embedded/1d3d/1p_richards/test_1p_richards.input b/test/multidomain/embedded/1d3d/1p_richards/params.input similarity index 64% rename from test/multidomain/embedded/1d3d/1p_richards/test_1p_richards.input rename to test/multidomain/embedded/1d3d/1p_richards/params.input index 473f9821a057c337d225a13d18d30c30f8a668d1..fe09ff1a666d46b5cec8437e7599da4534f03b63 100644 --- a/test/multidomain/embedded/1d3d/1p_richards/test_1p_richards.input +++ b/test/multidomain/embedded/1d3d/1p_richards/params.input @@ -16,16 +16,20 @@ UpperRight = 0.035 0.035 0 Cells = 12 12 12 [Problem] -Name = test_soilroot EnableGravity = false -[Soil.SpatialParams] -Permeability = 2.57e-12 # [m^2] -Porosity = 0.3 # [-] +[Vtk] +OutputName = test_md_embedded1d3d_1p_richards -[Root.SpatialParams] -Kx = 5.0968e-17 -Kr = 2.04e-13 +[Soil] +SpatialParams.Permeability = 2.57e-12 # [m^2] +SpatialParams.Porosity = 0.3 # [-] +Problem.Name = 3d + +[Root] +SpatialParams.Kx = 5.0968e-17 +SpatialParams.Kr = 2.04e-13 +Problem.Name = 1d [BoundaryConditions] InitialSoilPressure = -0.9429e4 # [Pa] diff --git a/test/multidomain/embedded/1d3d/1p_richards/rootproblem.hh b/test/multidomain/embedded/1d3d/1p_richards/problem_root.hh similarity index 98% rename from test/multidomain/embedded/1d3d/1p_richards/rootproblem.hh rename to test/multidomain/embedded/1d3d/1p_richards/problem_root.hh index b1be50ba03bc40248b1add41820b582b9848a705..31f08030d53925cbcab1672c3c29983318b2a537 100644 --- a/test/multidomain/embedded/1d3d/1p_richards/rootproblem.hh +++ b/test/multidomain/embedded/1d3d/1p_richards/problem_root.hh @@ -38,7 +38,7 @@ #include <dumux/material/components/simpleh2o.hh> #include <dumux/material/fluidsystems/1pliquid.hh> -#include "rootspatialparams.hh" +#include "spatialparams_root.hh" namespace Dumux { // forward declaration @@ -108,11 +108,11 @@ public: RootProblem(std::shared_ptr<const FVGridGeometry> fvGridGeometry, std::shared_ptr<SpatialParams> spatialParams, std::shared_ptr<CouplingManager> couplingManager) - : ParentType(fvGridGeometry, spatialParams) + : ParentType(fvGridGeometry, spatialParams, "Root") , couplingManager_(couplingManager) { //read parameters from input file - name_ = getParam<std::string>("Problem.Name") + "_1d"; + name_ = getParam<std::string>("Vtk.OutputName") + "_" + getParamFromGroup<std::string>(this->paramGroup(), "Problem.Name"); transpirationRate_ = getParam<Scalar>("BoundaryConditions.TranspirationRate"); } diff --git a/test/multidomain/embedded/1d3d/1p_richards/soilproblem.hh b/test/multidomain/embedded/1d3d/1p_richards/problem_soil.hh similarity index 98% rename from test/multidomain/embedded/1d3d/1p_richards/soilproblem.hh rename to test/multidomain/embedded/1d3d/1p_richards/problem_soil.hh index 63a63ee718926ac7161018a93c61c43736e22e5a..0354251e3defc60c1f4a590f03cf914bfb143b37 100644 --- a/test/multidomain/embedded/1d3d/1p_richards/soilproblem.hh +++ b/test/multidomain/embedded/1d3d/1p_richards/problem_soil.hh @@ -38,7 +38,7 @@ #include <dumux/porousmediumflow/richards/model.hh> #include <dumux/porousmediumflow/problem.hh> -#include "soilspatialparams.hh" +#include "spatialparams_soil.hh" namespace Dumux { @@ -96,11 +96,11 @@ class SoilProblem : public PorousMediumFlowProblem<TypeTag> public: SoilProblem(std::shared_ptr<const FVGridGeometry> fvGridGeometry, std::shared_ptr<CouplingManager> couplingManager) - : ParentType(fvGridGeometry) + : ParentType(fvGridGeometry, "Soil") , couplingManager_(couplingManager) { //read parameters from input file - name_ = getParam<std::string>("Problem.Name") + "_3d"; + name_ = getParam<std::string>("Vtk.OutputName") + "_" + getParamFromGroup<std::string>(this->paramGroup(), "Problem.Name"); initPressure_ = getParam<Scalar>("BoundaryConditions.InitialSoilPressure"); } diff --git a/test/multidomain/embedded/1d3d/1p_richards/rootspatialparams.hh b/test/multidomain/embedded/1d3d/1p_richards/spatialparams_root.hh similarity index 100% rename from test/multidomain/embedded/1d3d/1p_richards/rootspatialparams.hh rename to test/multidomain/embedded/1d3d/1p_richards/spatialparams_root.hh diff --git a/test/multidomain/embedded/1d3d/1p_richards/soilspatialparams.hh b/test/multidomain/embedded/1d3d/1p_richards/spatialparams_soil.hh similarity index 100% rename from test/multidomain/embedded/1d3d/1p_richards/soilspatialparams.hh rename to test/multidomain/embedded/1d3d/1p_richards/spatialparams_soil.hh diff --git a/test/multidomain/embedded/2d3d/1p_1p/CMakeLists.txt b/test/multidomain/embedded/2d3d/1p_1p/CMakeLists.txt index 87fe52ec3303fb1ea256adae97f6ccd13050db76..72dfa0417d17b5abfaa3e058b06a0a8ccddc49f2 100644 --- a/test/multidomain/embedded/2d3d/1p_1p/CMakeLists.txt +++ b/test/multidomain/embedded/2d3d/1p_1p/CMakeLists.txt @@ -1,27 +1,27 @@ -add_executable(test_embedded_fracture1p_tpfa EXCLUDE_FROM_ALL test_1p_1p.cc) +add_executable(test_md_embedded2d3d_fracture1p_tpfa EXCLUDE_FROM_ALL main.cc) -dune_add_test(NAME test_embedded_fracture1p_tpfa_linearsolver - TARGET test_embedded_fracture1p_tpfa +dune_add_test(NAME test_md_embedded2d3d_fracture1p_tpfa_linearsolver + TARGET test_md_embedded2d3d_fracture1p_tpfa COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMAKE_GUARD dune-foamgrid_FOUND CMD_ARGS --script fuzzy - --files ${CMAKE_SOURCE_DIR}/test/references/test_embedded_fracture_tpfa_2d.vtu - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_fracture_tpfa_linearsolver_2d-00001.vtu - ${CMAKE_SOURCE_DIR}/test/references/test_embedded_fracture_tpfa_3d.vtu - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_fracture_tpfa_linearsolver_3d-00001.vtu - --command "${CMAKE_CURRENT_BINARY_DIR}/test_embedded_fracture1p_tpfa test_embedded_fracture1p.input \ - -Problem.Name test_embedded_fracture_tpfa_linearsolver -Problem.SolverType linear") + --files ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded2d3d_fracture1p_tpfa_2d-reference.vtu + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded2d3d_fracture1p_tpfa_linearsolver_2d-00001.vtu + ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded2d3d_fracture1p_tpfa_3d-reference.vtu + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded2d3d_fracture1p_tpfa_linearsolver_3d-00001.vtu + --command "${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded2d3d_fracture1p_tpfa params.input \ + -Vtk.OutputName test_md_embedded2d3d_fracture1p_tpfa_linearsolver -Problem.SolverType linear") -dune_add_test(NAME test_embedded_fracture1p_tpfa_nonlinearsolver - TARGET test_embedded_fracture1p_tpfa +dune_add_test(NAME test_md_embedded2d3d_fracture1p_tpfa_nonlinearsolver + TARGET test_md_embedded2d3d_fracture1p_tpfa COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMAKE_GUARD dune-foamgrid_FOUND CMD_ARGS --script fuzzy - --files ${CMAKE_SOURCE_DIR}/test/references/test_embedded_fracture_tpfa_2d.vtu - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_fracture_tpfa_nonlinearsolver_2d-00001.vtu - ${CMAKE_SOURCE_DIR}/test/references/test_embedded_fracture_tpfa_3d.vtu - ${CMAKE_CURRENT_BINARY_DIR}/test_embedded_fracture_tpfa_nonlinearsolver_3d-00001.vtu - --command "${CMAKE_CURRENT_BINARY_DIR}/test_embedded_fracture1p_tpfa test_embedded_fracture1p.input \ - -Problem.Name test_embedded_fracture_tpfa_nonlinearsolver -Problem.SolverType nonlinear") -dune_symlink_to_source_files(FILES "fracture.msh" "test_embedded_fracture1p.input") + --files ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded2d3d_fracture1p_tpfa_2d-reference.vtu + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded2d3d_fracture1p_tpfa_nonlinearsolver_2d-00001.vtu + ${CMAKE_SOURCE_DIR}/test/references/test_md_embedded2d3d_fracture1p_tpfa_3d-reference.vtu + ${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded2d3d_fracture1p_tpfa_nonlinearsolver_3d-00001.vtu + --command "${CMAKE_CURRENT_BINARY_DIR}/test_md_embedded2d3d_fracture1p_tpfa params.input \ + -Vtk.OutputName test_md_embedded2d3d_fracture1p_tpfa_nonlinearsolver -Problem.SolverType nonlinear") +dune_symlink_to_source_files(FILES "fracture.msh" "params.input") set(CMAKE_BUILD_TYPE Release) diff --git a/test/multidomain/embedded/2d3d/1p_1p/test_1p_1p.cc b/test/multidomain/embedded/2d3d/1p_1p/main.cc similarity index 99% rename from test/multidomain/embedded/2d3d/1p_1p/test_1p_1p.cc rename to test/multidomain/embedded/2d3d/1p_1p/main.cc index 89cd00a3904e7e8697b61e4933a08785253a7a16..8316b69d35f2694e9e76c99fddbc9e3785bd3744 100644 --- a/test/multidomain/embedded/2d3d/1p_1p/test_1p_1p.cc +++ b/test/multidomain/embedded/2d3d/1p_1p/main.cc @@ -48,8 +48,8 @@ #include <dumux/multidomain/newtonsolver.hh> #include <dumux/multidomain/embedded/couplingmanager2d3d.hh> -#include "matrixproblem.hh" -#include "fractureproblem.hh" +#include "problem_matrix.hh" +#include "problem_fracture.hh" namespace Dumux { namespace Properties { diff --git a/test/multidomain/embedded/2d3d/1p_1p/test_embedded_fracture1p.input b/test/multidomain/embedded/2d3d/1p_1p/params.input similarity index 61% rename from test/multidomain/embedded/2d3d/1p_1p/test_embedded_fracture1p.input rename to test/multidomain/embedded/2d3d/1p_1p/params.input index 40146ec6dbecd72d646e11f55266fffcf6718765..0824cb0c380aff2eb425d055893dda1044a247e0 100644 --- a/test/multidomain/embedded/2d3d/1p_1p/test_embedded_fracture1p.input +++ b/test/multidomain/embedded/2d3d/1p_1p/params.input @@ -7,19 +7,20 @@ UpperRight = 8 8 5 Cells = 20 20 10 [Problem] -Name = test_embedded_fracture EnableGravity = false [Component] LiquidKinematicViscosity = 1e-6 # [m^2/s] LiquidDensity = 1000 # [kg/m^3] -[Matrix.SpatialParams] -Permeability = 1e-15 # [m^2] +[Matrix] +SpatialParams.Permeability = 1e-15 # [m^2] +Problem.Name = 3d -[Fracture.SpatialParams] -Permeability = 1e-7 # [m^2] -Aperture = 0.05 # [m] +[Fracture] +Problem.Name = 2d +SpatialParams.Permeability = 1e-7 # [m^2] +SpatialParams.Aperture = 0.05 # [m] [LinearSolver] MaxIterations = 2000 @@ -28,3 +29,6 @@ ResidualReduction = 1e-24 [Assembly.NumericDifference] BaseEpsilon = 0.1e5 PriVarMagnitude = 1e5 + +[Vtk] +OutputName = test_md_embedded2d3d_fracture1p diff --git a/test/multidomain/embedded/2d3d/1p_1p/fractureproblem.hh b/test/multidomain/embedded/2d3d/1p_1p/problem_fracture.hh similarity index 98% rename from test/multidomain/embedded/2d3d/1p_1p/fractureproblem.hh rename to test/multidomain/embedded/2d3d/1p_1p/problem_fracture.hh index 9609c686c10d9294a5db66a9afe69485baa7fcc4..99720a91df2cb79c09a374403e399d6b2971413a 100644 --- a/test/multidomain/embedded/2d3d/1p_1p/fractureproblem.hh +++ b/test/multidomain/embedded/2d3d/1p_1p/problem_fracture.hh @@ -105,12 +105,12 @@ public: FractureProblem(std::shared_ptr<const FVGridGeometry> fvGridGeometry, std::shared_ptr<typename ParentType::SpatialParams> spatialParams, std::shared_ptr<CouplingManager> couplingManager, - const std::string& paramGroup = "") + const std::string& paramGroup = "Fracture") : ParentType(fvGridGeometry, spatialParams, paramGroup) , couplingManager_(couplingManager) { //read parameters from input file - name_ = getParam<std::string>("Problem.Name") + "_2d"; + name_ = getParam<std::string>("Vtk.OutputName") + "_" + getParamFromGroup<std::string>(this->paramGroup(), "Problem.Name"); } /*! diff --git a/test/multidomain/embedded/2d3d/1p_1p/matrixproblem.hh b/test/multidomain/embedded/2d3d/1p_1p/problem_matrix.hh similarity index 98% rename from test/multidomain/embedded/2d3d/1p_1p/matrixproblem.hh rename to test/multidomain/embedded/2d3d/1p_1p/problem_matrix.hh index fbe3d194cda1ca09a614828682484eebcf0d1468..812f891dcff657758ec8a16a841b2fca4027c8bc 100644 --- a/test/multidomain/embedded/2d3d/1p_1p/matrixproblem.hh +++ b/test/multidomain/embedded/2d3d/1p_1p/problem_matrix.hh @@ -116,12 +116,12 @@ public: MatrixProblem(std::shared_ptr<const FVGridGeometry> fvGridGeometry, std::shared_ptr<typename ParentType::SpatialParams> spatialParams, std::shared_ptr<CouplingManager> couplingManager, - const std::string& paramGroup = "") + const std::string& paramGroup = "Matrix") : ParentType(fvGridGeometry, spatialParams, paramGroup) , couplingManager_(couplingManager) { //read parameters from input file - name_ = getParam<std::string>("Problem.Name") + "_3d"; + name_ = getParam<std::string>("Vtk.OutputName") + "_" + getParamFromGroup<std::string>(this->paramGroup(), "Problem.Name"); } /*! diff --git a/test/references/test_embedded_1d3d_1p1p_boxbox_average_1d.vtp b/test/references/test_md_embedded1d3d_1p1p_boxbox_average_1d-reference.vtp similarity index 100% rename from test/references/test_embedded_1d3d_1p1p_boxbox_average_1d.vtp rename to test/references/test_md_embedded1d3d_1p1p_boxbox_average_1d-reference.vtp diff --git a/test/references/test_embedded_1d3d_1p1p_boxbox_average_3d.vtu b/test/references/test_md_embedded1d3d_1p1p_boxbox_average_3d-reference.vtu similarity index 100% rename from test/references/test_embedded_1d3d_1p1p_boxbox_average_3d.vtu rename to test/references/test_md_embedded1d3d_1p1p_boxbox_average_3d-reference.vtu diff --git a/test/references/test_embedded_1d3d_1p1p_tpfatpfa_average_1d.vtp b/test/references/test_md_embedded1d3d_1p1p_tpfatpfa_average_1d-reference.vtp similarity index 100% rename from test/references/test_embedded_1d3d_1p1p_tpfatpfa_average_1d.vtp rename to test/references/test_md_embedded1d3d_1p1p_tpfatpfa_average_1d-reference.vtp diff --git a/test/references/test_embedded_1d3d_1p1p_tpfatpfa_average_3d.vtu b/test/references/test_md_embedded1d3d_1p1p_tpfatpfa_average_3d-reference.vtu similarity index 100% rename from test/references/test_embedded_1d3d_1p1p_tpfatpfa_average_3d.vtu rename to test/references/test_md_embedded1d3d_1p1p_tpfatpfa_average_3d-reference.vtu diff --git a/test/references/test_embedded_1d3d_1p2c_richards2c_1d-reference.vtp b/test/references/test_md_embedded1d3d_1p2c_richards2c_1d-reference.vtp similarity index 100% rename from test/references/test_embedded_1d3d_1p2c_richards2c_1d-reference.vtp rename to test/references/test_md_embedded1d3d_1p2c_richards2c_1d-reference.vtp diff --git a/test/references/test_embedded_1d3d_1p2c_richards2c_3d-reference.vtu b/test/references/test_md_embedded1d3d_1p2c_richards2c_3d-reference.vtu similarity index 100% rename from test/references/test_embedded_1d3d_1p2c_richards2c_3d-reference.vtu rename to test/references/test_md_embedded1d3d_1p2c_richards2c_3d-reference.vtu diff --git a/test/references/test_embedded_1p_richards_box_3d.vtu b/test/references/test_md_embedded1d3d_1p_richards_tpfabox_3d-reference.vtu similarity index 100% rename from test/references/test_embedded_1p_richards_box_3d.vtu rename to test/references/test_md_embedded1d3d_1p_richards_tpfabox_3d-reference.vtu diff --git a/test/references/test_embedded_1p_richards_tpfa_1d.vtp b/test/references/test_md_embedded1d3d_1p_richards_tpfatpfa_1d-reference.vtp similarity index 100% rename from test/references/test_embedded_1p_richards_tpfa_1d.vtp rename to test/references/test_md_embedded1d3d_1p_richards_tpfatpfa_1d-reference.vtp diff --git a/test/references/test_embedded_1p_richards_tpfa_3d.vtu b/test/references/test_md_embedded1d3d_1p_richards_tpfatpfa_3d-reference.vtu similarity index 100% rename from test/references/test_embedded_1p_richards_tpfa_3d.vtu rename to test/references/test_md_embedded1d3d_1p_richards_tpfatpfa_3d-reference.vtu diff --git a/test/references/test_embedded_fracture_tpfa_2d.vtu b/test/references/test_md_embedded2d3d_fracture1p_tpfa_2d-reference.vtu similarity index 100% rename from test/references/test_embedded_fracture_tpfa_2d.vtu rename to test/references/test_md_embedded2d3d_fracture1p_tpfa_2d-reference.vtu diff --git a/test/references/test_embedded_fracture_tpfa_3d.vtu b/test/references/test_md_embedded2d3d_fracture1p_tpfa_3d-reference.vtu similarity index 100% rename from test/references/test_embedded_fracture_tpfa_3d.vtu rename to test/references/test_md_embedded2d3d_fracture1p_tpfa_3d-reference.vtu