Skip to content
Snippets Groups Projects
Commit 5260b481 authored by René Heß's avatar René Heß
Browse files

Lets use DG method!

parent 02a94aab
No related branches found
No related tags found
No related merge requests found
......@@ -102,7 +102,7 @@ def name_trialfunction_gradient(element, restriction, component):
# This is just a temporary test used to create an A-matrix as
# local operator class member. Right now it doesn't evaluate
# anything.
if get_option("sumfact"):
if get_option("sumfact") and restriction==Restriction.NONE:
from dune.perftool.sumfact import evaluate_coefficient_gradient_sumfact
evaluate_coefficient_gradient_sumfact()
......
# 1. Poisson Test Case: source f, bc g
dune_add_formcompiler_system_test(UFLFILE poisson.ufl
BASENAME sumfact_poisson
INIFILE poisson.mini
)
# # 2. Poisson Test Case: DG, f + pure dirichlet
# dune_add_formcompiler_system_test(UFLFILE poisson_dg.ufl
# BASENAME sumfact_poisson_dg
# INIFILE poisson_dg.mini
# # 1. Poisson Test Case: source f, bc g
# dune_add_formcompiler_system_test(UFLFILE poisson.ufl
# BASENAME sumfact_poisson
# INIFILE poisson.mini
# )
# 2. Poisson Test Case: DG, f + pure dirichlet
dune_add_formcompiler_system_test(UFLFILE poisson_dg.ufl
BASENAME sumfact_poisson_dg
INIFILE poisson_dg.mini
)
__name = sumfact_poisson_{__exec_suffix}
__exec_suffix = numdiff, symdiff | expand num
cells = 32 32
cells = 1 1
extension = 1. 1.
[wrapper.vtkcompare]
......
__name = sumfact_poisson_dg_{__exec_suffix}
__exec_suffix = numdiff, symdiff | expand num
lowerleft = 0.0 0.0
upperright = 1.0 1.0
elements = 32 32
elementType = simplical
cells = 1 1
extension = 1. 1.
[wrapper.vtkcompare]
name = {__name}
reference = poisson_dg_ref
extension = vtu
[formcompiler]
......
f = Expression("Dune::FieldVector<double,2> c(0.5); c-= x; return 4.*(1.-c.two_norm2())*std::exp(-1.*c.two_norm2());")
g = Expression("Dune::FieldVector<double,2> c(0.5); c-= x; return std::exp(-1.*c.two_norm2());", on_intersection=True)
cell = "quadrilateral"
f = Expression("return -2.0*x.size();", cell=cell)
g = Expression("return x.two_norm2();", on_intersection=True, cell=cell)
cell = triangle
V = FiniteElement("DG", cell, 1)
u = TrialFunction(V)
......@@ -23,4 +24,4 @@ r = inner(grad(u), grad(v))*dx \
+ theta*g*inner(grad(v), n)*ds \
- gamma*g*v*ds
forms = [r]
forms = [r]
\ 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