Skip to content
Snippets Groups Projects
Commit 4ce80baa authored by Benjamin Faigle's avatar Benjamin Faigle
Browse files

Deselected UG grid to be able to compite stable without UG

also, minor docu changes (description to run)

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@4960 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent d1326583
No related branches found
No related tags found
No related merge requests found
...@@ -144,7 +144,7 @@ SET_SCALAR_PROP(IMPESTestProblem, CFLFactor, 0.95); ...@@ -144,7 +144,7 @@ SET_SCALAR_PROP(IMPESTestProblem, CFLFactor, 0.95);
* and there is free outflow on the right side. * and there is free outflow on the right side.
* *
* To run the simulation execute the following line in shell: * To run the simulation execute the following line in shell:
* <tt>./test_2p 1e8</tt>, * <tt>./test_impes 1e8</tt>,
* where the argument defines the simulation endtime. * where the argument defines the simulation endtime.
*/ */
template<class TypeTag = TTAG(IMPESTestProblem)> template<class TypeTag = TTAG(IMPESTestProblem)>
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#include <dune/grid/uggrid.hh> #include <dune/grid/uggrid.hh>
#endif #endif
#include <dune/grid/io/file/dgfparser/dgfug.hh> #include <dune/grid/io/file/dgfparser.hh>
#include <dumux/material/fluidsystems/liquidphase.hh> #include <dumux/material/fluidsystems/liquidphase.hh>
#include <dumux/material/components/unit.hh> #include <dumux/material/components/unit.hh>
...@@ -60,7 +60,7 @@ NEW_TYPE_TAG(TransportTestProblem, INHERITS_FROM(DecoupledModel, Transport)); ...@@ -60,7 +60,7 @@ NEW_TYPE_TAG(TransportTestProblem, INHERITS_FROM(DecoupledModel, Transport));
// Set the grid type // Set the grid type
SET_PROP(TransportTestProblem, Grid) SET_PROP(TransportTestProblem, Grid)
{ {
typedef Dune::UGGrid<2> type; typedef Dune::YaspGrid<2> type;
}; };
// Set the problem property // Set the problem property
...@@ -116,7 +116,6 @@ SET_SCALAR_PROP(TransportTestProblem, CFLFactor, 1.0); ...@@ -116,7 +116,6 @@ SET_SCALAR_PROP(TransportTestProblem, CFLFactor, 1.0);
* *
* \brief test problem for the explicit transport model * \brief test problem for the explicit transport model
* *
*
* A unit "fluid" is injected from the left side into a rectangular 2D * A unit "fluid" is injected from the left side into a rectangular 2D
* domain also this testing fluid. Upper and lower boundary are closed (Neumann = 0), * domain also this testing fluid. Upper and lower boundary are closed (Neumann = 0),
* and there is free outflow on the right side. * and there is free outflow on the right side.
...@@ -125,7 +124,7 @@ SET_SCALAR_PROP(TransportTestProblem, CFLFactor, 1.0); ...@@ -125,7 +124,7 @@ SET_SCALAR_PROP(TransportTestProblem, CFLFactor, 1.0);
* pressure field being solved. * pressure field being solved.
* *
* To run the simulation execute the following line in shell: * To run the simulation execute the following line in shell:
* <tt>./test_2p 16000</tt>, * <tt>./test_transport grids/test_transport.dgf 16000</tt>,
* where the argument defines the simulation endtime. * where the argument defines the simulation endtime.
*/ */
template<class TypeTag = TTAG(TransportTestProblem)> template<class TypeTag = TTAG(TransportTestProblem)>
......
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