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

Remove DOF comparison

We never really used or trusted it.
parent c48b954a
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,6 @@ class PerftoolOptionsArray(ImmutableRecord): ...@@ -40,7 +40,6 @@ class PerftoolOptionsArray(ImmutableRecord):
matrix_free = PerftoolOption(default=False, helpstr="Use iterative solver with matrix free jacobian application") matrix_free = PerftoolOption(default=False, helpstr="Use iterative solver with matrix free jacobian application")
explicit_time_stepping = PerftoolOption(default=False, helpstr="use explicit time stepping") explicit_time_stepping = PerftoolOption(default=False, helpstr="use explicit time stepping")
exact_solution_expression = PerftoolOption(helpstr="name of the exact solution expression in the ufl file") exact_solution_expression = PerftoolOption(helpstr="name of the exact solution expression in the ufl file")
compare_dofs = PerftoolOption(helpstr="maximal allowed maximum error of difference between degrees of freedom vectors of numerical solution and interpolation of exact solution (NOTE: requires --exact-solution-expression)")
compare_l2errorsquared = PerftoolOption(helpstr="maximal allowed l2 error squared of difference between numerical solution and interpolation of exact solution (NOTE: requires --exact-solution-expression)") compare_l2errorsquared = PerftoolOption(helpstr="maximal allowed l2 error squared of difference between numerical solution and interpolation of exact solution (NOTE: requires --exact-solution-expression)")
interactive = PerftoolOption(default=False, helpstr="whether the optimization process should be guided interactively (also useful for debugging)") interactive = PerftoolOption(default=False, helpstr="whether the optimization process should be guided interactively (also useful for debugging)")
print_transformations = PerftoolOption(default=False, helpstr="print out dot files after ufl tree transformations") print_transformations = PerftoolOption(default=False, helpstr="print out dot files after ufl tree transformations")
......
...@@ -267,9 +267,7 @@ def generate_driver(formdatas, data): ...@@ -267,9 +267,7 @@ def generate_driver(formdatas, data):
from dune.perftool.pdelab.driver.instationary import solve_instationary from dune.perftool.pdelab.driver.instationary import solve_instationary
solve_instationary() solve_instationary()
from dune.perftool.pdelab.driver.error import compare_dofs, compare_L2_squared from dune.perftool.pdelab.driver.error import compare_L2_squared
if get_option("compare_dofs"):
compare_dofs()
if get_option("compare_l2errorsquared"): if get_option("compare_l2errorsquared"):
compare_L2_squared() compare_L2_squared()
......
...@@ -38,25 +38,6 @@ def name_exact_solution_gridfunction(): ...@@ -38,25 +38,6 @@ def name_exact_solution_gridfunction():
return name_boundary_function(element, func) return name_boundary_function(element, func)
@preamble
def compare_dofs():
v = name_vector(get_formdata())
solution = name_exact_solution()
fail = name_test_fail_variable()
return ["",
"// Maximum norm of difference between dof vectors of the",
"// numerical solution and the interpolation of the exact solution",
"using Dune::PDELab::Backend::native;",
"double maxerror(0.0);",
"for (std::size_t i=0; i<native({}).size(); ++i)".format(v),
" if (std::abs(native({})[i]-native({})[i]) > maxerror)".format(v, solution),
" maxerror = std::abs(native({})[i]-native({})[i]);".format(v, solution),
"std::cout << std::endl << \"Maxerror: \" << maxerror << std::endl;",
"if (maxerror>{})".format(get_option("compare_dofs")),
" {} = true;".format(fail)]
def type_discrete_grid_function(gfs): def type_discrete_grid_function(gfs):
return "{}_DGF".format(gfs.upper()) return "{}_DGF".format(gfs.upper())
......
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