Skip to content
Snippets Groups Projects
Commit 47c0e2d0 authored by Kilian Weishaupt's avatar Kilian Weishaupt Committed by Timo Koch
Browse files

[cleanup][tests] Use new standard grid creator for zeroeq

* Use input file for structured grids instead of dgf files for
  zeroeq tests
parent 93ef7633
No related branches found
No related tags found
1 merge request!59Feature/use standard gridcreator for structured grids
DGF
Interval
0 0 % first corner
5.0 1.5 % second corner
25 15 % cells in x and y direction
#
Cube
0 1 2 3
#
BOUNDARYDOMAIN
default 1 % all boundaries have id 1
#BOUNDARYDOMAIN
# unitcube.dgf
DGF
Interval
0 0 % first corner
10 0.2469 % second corner
20 40 % cells in x and y direction
#
Cube
0 1 2 3
#
BOUNDARYDOMAIN
default 1 % all boundaries have id 1
#BOUNDARYDOMAIN
# unitcube.dgf
...@@ -3,7 +3,9 @@ DtInitial = 5 # [s] ...@@ -3,7 +3,9 @@ DtInitial = 5 # [s]
TEnd = 50 # [s] TEnd = 50 # [s]
[Grid] [Grid]
File = grids/pipe.dgf LowerLeft = 0 0
UpperRight = 10 0.2469
Cells = 20 40
[Problem] [Problem]
OutputName = "zeroeq" OutputName = "zeroeq"
......
...@@ -3,7 +3,9 @@ DtInitial = 0.001 # [s] ...@@ -3,7 +3,9 @@ DtInitial = 0.001 # [s]
TEnd = 10 # [s] TEnd = 10 # [s]
[Grid] [Grid]
File = grids/channel.dgf LowerLeft = 0 0
UpperRight = 5.0 1.5
Cells = 25 15
[Problem] [Problem]
OutputName = "zeroeqchannel" OutputName = "zeroeqchannel"
......
...@@ -23,12 +23,6 @@ ...@@ -23,12 +23,6 @@
#ifndef DUMUX_ZEROEQCHANNELTESTPROBLEM_HH #ifndef DUMUX_ZEROEQCHANNELTESTPROBLEM_HH
#define DUMUX_ZEROEQCHANNELTESTPROBLEM_HH #define DUMUX_ZEROEQCHANNELTESTPROBLEM_HH
#if HAVE_UG
#include <dune/grid/io/file/dgfparser/dgfug.hh>
#else
#include <dune/grid/io/file/dgfparser/dgfyasp.hh>
#endif
#include <dumux/material/fluidsystems/h2oair.hh> #include <dumux/material/fluidsystems/h2oair.hh>
#include <dumux/material/fluidsystems/gasphase.hh> #include <dumux/material/fluidsystems/gasphase.hh>
......
...@@ -26,12 +26,6 @@ ...@@ -26,12 +26,6 @@
#ifndef DUMUX_ZEROEQTESTPROBLEM_HH #ifndef DUMUX_ZEROEQTESTPROBLEM_HH
#define DUMUX_ZEROEQTESTPROBLEM_HH #define DUMUX_ZEROEQTESTPROBLEM_HH
#if HAVE_UG
#include <dune/grid/io/file/dgfparser/dgfug.hh>
#else
#include <dune/grid/io/file/dgfparser/dgfyasp.hh>
#endif
#include <dumux/material/fluidsystems/h2oair.hh> #include <dumux/material/fluidsystems/h2oair.hh>
#include <dumux/material/fluidsystems/gasphase.hh> #include <dumux/material/fluidsystems/gasphase.hh>
......
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