Skip to content
Snippets Groups Projects
Commit a05040e0 authored by Timo Koch's avatar Timo Koch
Browse files

[fracture][test] Add a fracture 2p box test

parent a5abbaaa
No related branches found
No related tags found
1 merge request!172Feature/discrete fracture 2d3d test for box
...@@ -73,7 +73,11 @@ add_dumux_test(test_cc2pni test_cc2pni test_cc2pni.cc ...@@ -73,7 +73,11 @@ add_dumux_test(test_cc2pni test_cc2pni test_cc2pni.cc
endif() endif()
add_dumux_test(test_fracture_box2p test_fracture_box2p test_fracture_box2p.cc add_dumux_test(test_fracture_box2p test_fracture_box2p test_fracture_box2p.cc
${CMAKE_CURRENT_BINARY_DIR}/test_fracture_box2p) python ${CMAKE_SOURCE_DIR}/bin/testing/runtest.py
--script fuzzy
--files ${CMAKE_SOURCE_DIR}/test/references/fracturebox2p-reference.vtu
${CMAKE_CURRENT_BINARY_DIR}/fracturebox-00024.vtu
--command "${CMAKE_CURRENT_BINARY_DIR}/test_fracture_box2p")
#install sources #install sources
install(FILES install(FILES
......
...@@ -45,7 +45,11 @@ namespace Properties ...@@ -45,7 +45,11 @@ namespace Properties
NEW_TYPE_TAG(FractureProblem, INHERITS_FROM(TwoP, FractureSpatialParams)); NEW_TYPE_TAG(FractureProblem, INHERITS_FROM(TwoP, FractureSpatialParams));
NEW_TYPE_TAG(FractureBoxProblem, INHERITS_FROM(BoxModel, FractureProblem)); NEW_TYPE_TAG(FractureBoxProblem, INHERITS_FROM(BoxModel, FractureProblem));
#if HAVE_DUNE_FOAMGRID
SET_TYPE_PROP(FractureBoxProblem, Grid, Dune::FoamGrid<2, 3>); SET_TYPE_PROP(FractureBoxProblem, Grid, Dune::FoamGrid<2, 3>);
#else
SET_TYPE_PROP(FractureBoxProblem, Grid, Dune::YaspGrid<3>);
#endif
// Set the problem property // Set the problem property
SET_TYPE_PROP(FractureProblem, Problem, Dumux::FractureProblem<TypeTag>); SET_TYPE_PROP(FractureProblem, Problem, Dumux::FractureProblem<TypeTag>);
...@@ -241,7 +245,7 @@ public: ...@@ -241,7 +245,7 @@ public:
values.setAllDirichlet(); values.setAllDirichlet();
if (onInlet_(globalPos)) if (onInlet_(globalPos))
values.setNeumann(contiNEqIdx); values.setAllNeumann();
if (globalPos[2] > 1.0-eps_ || globalPos[2] < eps_) if (globalPos[2] > 1.0-eps_ || globalPos[2] < eps_)
values.setAllNeumann(); values.setAllNeumann();
} }
......
...@@ -41,6 +41,12 @@ void usage(const char *progName, const std::string &errorMsg) ...@@ -41,6 +41,12 @@ void usage(const char *progName, const std::string &errorMsg)
//////////////////////// ////////////////////////
int main(int argc, char** argv) int main(int argc, char** argv)
{ {
#if HAVE_DUNE_FOAMGRID
typedef TTAG(FractureBoxProblem) TypeTag; typedef TTAG(FractureBoxProblem) TypeTag;
return Dumux::start<TypeTag>(argc, argv, usage); return Dumux::start<TypeTag>(argc, argv, usage);
#else
#warning External grid module dune-foamgrid needed to run this example.
std::cerr << "Test skipped, it needs dune-foamgrid!" << std::endl;
return 77;
#endif
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment