From 323bbac0a7eb3c563a3537c661a3c83f17042939 Mon Sep 17 00:00:00 2001 From: Dominic Kempf <dominic.kempf@iwr.uni-heidelberg.de> Date: Fri, 4 Aug 2017 10:50:45 +0200 Subject: [PATCH] Implement initial conditions though still mixed up by name with dirichlet bc. --- python/dune/perftool/compile.py | 1 - python/dune/perftool/pdelab/driver/instationary.py | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/python/dune/perftool/compile.py b/python/dune/perftool/compile.py index 18e620d0..cd5344c0 100644 --- a/python/dune/perftool/compile.py +++ b/python/dune/perftool/compile.py @@ -94,7 +94,6 @@ def read_ufl(uflfile): magic_names = ("dirichlet_expression", "is_dirichlet", - "initial_condition", "exact_solution", ) for name in magic_names: diff --git a/python/dune/perftool/pdelab/driver/instationary.py b/python/dune/perftool/pdelab/driver/instationary.py index 8b5ebc7f..723bcfce 100644 --- a/python/dune/perftool/pdelab/driver/instationary.py +++ b/python/dune/perftool/pdelab/driver/instationary.py @@ -17,7 +17,9 @@ from dune.perftool.pdelab.driver.gridoperator import (name_gridoperator, from dune.perftool.pdelab.driver.constraints import (name_bctype_function, name_constraintscontainer, ) -from dune.perftool.pdelab.driver.interpolate import name_boundary_function +from dune.perftool.pdelab.driver.interpolate import (interpolate_dirichlet_data, + name_boundary_function, + ) from dune.perftool.pdelab.driver.solve import (print_matrix, print_residual, name_stationarynonlinearproblemsolver, @@ -65,6 +67,7 @@ def time_loop(): cc = name_constraintscontainer() vector_type = type_vector(formdata) vector = name_vector(formdata) + interpolate_dirichlet_data(vector) # Choose between explicit and implicit time stepping explicit = get_option('explicit_time_stepping') -- GitLab