Skip to content
Snippets Groups Projects
Commit 3515074a authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Ajust the meta ini files to the command syntax

parent 143d004f
No related branches found
No related tags found
No related merge requests found
# define some convenience variables # define some convenience variables
dim =dim= 2#, 3 dim = 2
grid =grid= yasp, ug grid = yasp, ug | expand grid
degree =deg= 1, 2 degree = 1, 2 | expand deg
naming = {grid}_{dim}d_Q{degree} naming = {grid}_{dim}d_Q{degree}
# The suffix for the executable # The suffix for the executable
...@@ -16,16 +16,16 @@ name = poisson_{naming} ...@@ -16,16 +16,16 @@ name = poisson_{naming}
reference = poisson_reference_{dim}d_Q{degree} reference = poisson_reference_{dim}d_Q{degree}
[yaspgrid] [yaspgrid]
cells =dim= 1 1#, 1 1 1 cells = 1 1
extension =dim= 1. 1.#, 1. 1. 1. extension = 1. 1.
refinement =dim= 4#, 2 refinement = 4
[ug] [ug]
cells =dim= 1 1#, 1 1 1 cells = 1 1
lowerleft =dim= 0. 0.#, 0. 0. 0. lowerleft = 0. 0.
upperright =dim= 1. 1.#, 1. 1. 1. upperright = 1. 1.
refinement =dim= 4#, 2 refinement = 4
[__STATIC.COMPILE_DEFINITIONS] [__STATIC.COMPILE_DEFINITIONS]
GRIDTYPE =grid= Dune::YaspGrid<{dim}>, Dune::UGGrid<{dim}> GRIDTYPE = Dune::YaspGrid<{dim}>, Dune::UGGrid<{dim}> | expand grid
DEGREE = {degree} DEGREE = {degree}
\ No newline at end of file
# define some convenience variables # define some convenience variables
dim =dim= 2#, 3 dim = 2
grid =grid= yasp, ug grid = yasp, ug | expand grid
degree =deg= 1, 2 degree = 1, 2 | expand deg
naming = {grid}_{dim}d_Q{degree} naming = {grid}_{dim}d_Q{degree}
level == 1,2,3,4,5 level = 1,2,3,4,5 | expand
# The suffix for the executable # The suffix for the executable
__exec_suffix = {naming} __exec_suffix = {naming}
...@@ -17,21 +17,21 @@ output = False ...@@ -17,21 +17,21 @@ output = False
name = poisson_{naming} name = poisson_{naming}
[yaspgrid] [yaspgrid]
cells =dim= 1 1#, 1 1 1 cells = 1 1
extension =dim= 1. 1.#, 1. 1. 1. extension = 1. 1.
refinement = {level} refinement = {level}
[ug] [ug]
cells =dim= 1 1#, 1 1 1 cells = 1 1
lowerleft =dim= 0. 0.#, 0. 0. 0. lowerleft = 0. 0.
upperright =dim= 1. 1.#, 1. 1. 1. upperright = 1. 1.
refinement = {level} refinement = {level}
[__STATIC.COMPILE_DEFINITIONS] [__STATIC.COMPILE_DEFINITIONS]
GRIDTYPE =grid= Dune::YaspGrid<{dim}>, Dune::UGGrid<{dim}> GRIDTYPE = Dune::YaspGrid<{dim}>, Dune::UGGrid<{dim}> | expand grid
DEGREE = {degree} DEGREE = {degree}
[__CONVERGENCE_TEST] [__CONVERGENCE_TEST]
TestKey = level TestKey = level
ExpectedRate =deg= 2, 3 ExpectedRate = 2, 3 | expand degree
AbsoluteDiff = 0.1 AbsoluteDiff = 0.1
\ No newline at end of file
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