Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-codegen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Christian Heinigk
dune-codegen
Commits
4e3e47bd
Commit
4e3e47bd
authored
7 years ago
by
Dominic Kempf
Browse files
Options
Downloads
Patches
Plain Diff
Adjust the 3D tests
parent
a17a6e45
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
test/sumfact/stokes/stokes_3d_dg.mini
+2
-8
2 additions, 8 deletions
test/sumfact/stokes/stokes_3d_dg.mini
test/sumfact/stokes/stokes_3d_dg.ufl
+1
-3
1 addition, 3 deletions
test/sumfact/stokes/stokes_3d_dg.ufl
with
3 additions
and
11 deletions
test/sumfact/stokes/stokes_3d_dg.mini
+
2
−
8
View file @
4e3e47bd
__name = sumfact_stokes_3d_dg_{__exec_suffix}
__name = sumfact_stokes_3d_dg
__exec_suffix = symdiff, numdiff | expand num
cells = 4 4 4
cells = 4 4 4
extension = 1. 1. 1.
extension = 1. 1. 1.
...
@@ -10,10 +9,5 @@ name = {__name}
...
@@ -10,10 +9,5 @@ name = {__name}
extension = vtu
extension = vtu
[formcompiler]
[formcompiler]
numerical_jacobian = 0, 1 | expand num
numerical_jacobian = 0
exact_solution_expression = g
compare_l2errorsquared = 1e-9
sumfact = 1
sumfact = 1
# Disable symdiff test for now
{__exec_suffix} == symdiff | exclude
This diff is collapsed.
Click to expand it.
test/sumfact/stokes/stokes_3d_dg.ufl
+
1
−
3
View file @
4e3e47bd
cell = hexahedron
cell = hexahedron
x = SpatialCoordinate(cell)
x = SpatialCoordinate(cell)
g_v = as_vector((4*x[1]*(1.-x[1]), 0.0, 0.0))
g_v = as_vector((16.*x[1]*(1.-x[1])*x[2]*(1.-x[2]), 0.0, 0.0))
g_p = 8*(1.-x[0])
g = (g_v, g_p)
bctype = conditional(x[0] < 1. - 1e-8, 1, 0)
bctype = conditional(x[0] < 1. - 1e-8, 1, 0)
P2 = VectorElement("DG", cell, 2)
P2 = VectorElement("DG", cell, 2)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment