diff --git a/test/freeflow/navierstokes/channel/3d_nonuniform/properties.hh b/test/freeflow/navierstokes/channel/3d_nonuniform/properties.hh index fa4d709499196ff9f82fa63ddf6908779668514a..d63f4b5923e33b73623d3bd72dc38154cbe6232c 100644 --- a/test/freeflow/navierstokes/channel/3d_nonuniform/properties.hh +++ b/test/freeflow/navierstokes/channel/3d_nonuniform/properties.hh @@ -48,11 +48,10 @@ #include <dumux/discretization/box/subcontrolvolumeface.hh> #include <dumux/discretization/box/fvgridgeometry.hh> -#include <dumux/freeflow/navierstokes/momentum/diamond/model.hh> -#include <dumux/freeflow/navierstokes/momentum/pq1bubble/model.hh> #include <dumux/freeflow/navierstokes/mass/1p/model.hh> #include <dumux/freeflow/navierstokes/momentum/problem.hh> #include <dumux/freeflow/navierstokes/mass/problem.hh> +#include <dumux/freeflow/navierstokes/momentum/cvfe/model.hh> #include <dumux/material/components/constant.hh> #include <dumux/material/fluidsystems/1pliquid.hh> @@ -66,8 +65,8 @@ namespace Dumux::Properties { // Create new type tags namespace TTag { struct ThreeDChannelTest {}; -struct ThreeDChannelTestMomentumDiamond { using InheritsFrom = std::tuple<ThreeDChannelTest, NavierStokesMomentumDiamond, FaceCenteredDiamondModel>; }; -struct ThreeDChannelTestMomentumPQ1Bubble { using InheritsFrom = std::tuple<ThreeDChannelTest, NavierStokesMomentumPQ1Bubble, PQ1BubbleModel>; }; +struct ThreeDChannelTestMomentumDiamond { using InheritsFrom = std::tuple<ThreeDChannelTest, NavierStokesMomentumCVFE, FaceCenteredDiamondModel>; }; +struct ThreeDChannelTestMomentumPQ1Bubble { using InheritsFrom = std::tuple<ThreeDChannelTest, NavierStokesMomentumCVFE, PQ1BubbleModel>; }; struct ThreeDChannelTestMassTpfa { using InheritsFrom = std::tuple<ThreeDChannelTest, NavierStokesMassOneP, CCTpfaModel>; }; struct ThreeDChannelTestMassBox { using InheritsFrom = std::tuple<ThreeDChannelTest, NavierStokesMassOneP, BoxModel>; }; } // end namespace TTag diff --git a/test/freeflow/navierstokes/channel/pipe/momentum/properties.hh b/test/freeflow/navierstokes/channel/pipe/momentum/properties.hh index 821063fb04177c96e982137264a176efbfd42b59..c2c852f0a0a951f91bae3c2f9dc5fb6788a1cfae 100644 --- a/test/freeflow/navierstokes/channel/pipe/momentum/properties.hh +++ b/test/freeflow/navierstokes/channel/pipe/momentum/properties.hh @@ -27,8 +27,7 @@ #include <dune/grid/yaspgrid.hh> -#include <dumux/freeflow/navierstokes/momentum/diamond/model.hh> -#include <dumux/freeflow/navierstokes/momentum/pq1bubble/model.hh> +#include <dumux/freeflow/navierstokes/momentum/cvfe/model.hh> #include <dumux/freeflow/navierstokes/momentum/problem.hh> #include <dumux/discretization/fcdiamond.hh> @@ -44,8 +43,8 @@ namespace Dumux::Properties { // Create new type tags namespace TTag { struct PipeFlow { }; -struct PipeFlowDiamond { using InheritsFrom = std::tuple<NavierStokesMomentumDiamond, FaceCenteredDiamondModel, PipeFlow>; }; -struct PipeFlowPQ1Bubble { using InheritsFrom = std::tuple<NavierStokesMomentumPQ1Bubble, PQ1BubbleModel, PipeFlow>; }; +struct PipeFlowDiamond { using InheritsFrom = std::tuple<NavierStokesMomentumCVFE, FaceCenteredDiamondModel, PipeFlow>; }; +struct PipeFlowPQ1Bubble { using InheritsFrom = std::tuple<NavierStokesMomentumCVFE, PQ1BubbleModel, PipeFlow>; }; } // end namespace TTag // the fluid system diff --git a/test/freeflow/navierstokes/donea/CMakeLists.txt b/test/freeflow/navierstokes/donea/CMakeLists.txt index 79437cb809ad27466f3d8d711835a3e3d013fc5a..97aca98c3bb0df9adb380827c4c3b94cfd1e2983 100644 --- a/test/freeflow/navierstokes/donea/CMakeLists.txt +++ b/test/freeflow/navierstokes/donea/CMakeLists.txt @@ -119,7 +119,7 @@ dumux_add_test(NAME test_ff_stokes_donea_momentum_diamond_quad CMAKE_GUARD "( HAVE_UMFPACK AND dune-alugrid_FOUND )" COMPILE_DEFINITIONS GRIDTYPE=Dune::ALUGrid<2,2,Dune::cube,Dune::nonconforming> COMPILE_DEFINITIONS DISCRETIZATION_MODEL=FaceCenteredDiamondModel - COMPILE_DEFINITIONS NAVIER_STOKES_MODEL=NavierStokesMomentumDiamond + COMPILE_DEFINITIONS NAVIER_STOKES_MODEL=NavierStokesMomentumCVFE COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMD_ARGS --script fuzzy --files ${CMAKE_SOURCE_DIR}/test/references/test_ff_stokes_donea_momentum_diamond_quad-reference.vtu @@ -144,7 +144,7 @@ dumux_add_test(NAME test_ff_stokes_donea_momentum_diamond_simplex CMAKE_GUARD "( HAVE_UMFPACK AND dune-alugrid_FOUND )" COMPILE_DEFINITIONS GRIDTYPE=Dune::ALUGrid<2,2,Dune::simplex,Dune::nonconforming> COMPILE_DEFINITIONS DISCRETIZATION_MODEL=FaceCenteredDiamondModel - COMPILE_DEFINITIONS NAVIER_STOKES_MODEL=NavierStokesMomentumDiamond + COMPILE_DEFINITIONS NAVIER_STOKES_MODEL=NavierStokesMomentumCVFE COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMD_ARGS --script fuzzy --files ${CMAKE_SOURCE_DIR}/test/references/test_ff_stokes_donea_momentum_diamond_simplex-reference.vtu @@ -170,7 +170,7 @@ dumux_add_test(NAME test_ff_stokes_donea_momentum_pq1bubble_quad CMAKE_GUARD "( HAVE_UMFPACK AND dune-alugrid_FOUND )" COMPILE_DEFINITIONS GRIDTYPE=Dune::ALUGrid<2,2,Dune::cube,Dune::nonconforming> COMPILE_DEFINITIONS DISCRETIZATION_MODEL=PQ1BubbleModel - COMPILE_DEFINITIONS NAVIER_STOKES_MODEL=NavierStokesMomentumPQ1Bubble + COMPILE_DEFINITIONS NAVIER_STOKES_MODEL=NavierStokesMomentumCVFE COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMD_ARGS --script fuzzy --files ${CMAKE_SOURCE_DIR}/test/references/test_ff_stokes_donea_momentum_pq1bubble_quad-reference.vtu @@ -184,7 +184,7 @@ dumux_add_test(NAME test_ff_stokes_donea_momentum_pq1bubble_simplex CMAKE_GUARD "( HAVE_UMFPACK AND dune-alugrid_FOUND )" COMPILE_DEFINITIONS GRIDTYPE=Dune::ALUGrid<2,2,Dune::simplex,Dune::nonconforming> COMPILE_DEFINITIONS DISCRETIZATION_MODEL=PQ1BubbleModel - COMPILE_DEFINITIONS NAVIER_STOKES_MODEL=NavierStokesMomentumPQ1Bubble + COMPILE_DEFINITIONS NAVIER_STOKES_MODEL=NavierStokesMomentumCVFE COMMAND ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py CMD_ARGS --script fuzzy --files ${CMAKE_SOURCE_DIR}/test/references/test_ff_stokes_donea_momentum_pq1bubble_simplex-reference.vtu diff --git a/test/freeflow/navierstokes/donea/properties_momentum.hh b/test/freeflow/navierstokes/donea/properties_momentum.hh index 17455be6048b474b14e08cf1852d07431660c3c2..637b29c38c1d422c8102a7849ef6838b385cf925 100644 --- a/test/freeflow/navierstokes/donea/properties_momentum.hh +++ b/test/freeflow/navierstokes/donea/properties_momentum.hh @@ -50,11 +50,9 @@ #include <dumux/freeflow/navierstokes/momentum/model.hh> #include <dumux/freeflow/navierstokes/momentum/problem.hh> #include <dumux/discretization/fcstaggered.hh> +#include <dumux/freeflow/navierstokes/momentum/cvfe/model.hh> -#include <dumux/freeflow/navierstokes/momentum/diamond/model.hh> #include <dumux/discretization/fcdiamond.hh> - -#include <dumux/freeflow/navierstokes/momentum/pq1bubble/model.hh> #include <dumux/discretization/pq1bubble.hh> #include "problem.hh"