Skip to content
Snippets Groups Projects
Commit 2e9b9f95 authored by Nils Kohl's avatar Nils Kohl :full_moon_with_face:
Browse files

Added diffusion (P2), divergence, gradient to toml. Bumped quad degree (2->3)...

Added diffusion (P2), divergence, gradient to toml. Bumped quad degree (2->3) for epsilon + icoshell blending.
parent fc9683e9
No related branches found
No related tags found
1 merge request!3New operators (Epsilon, FullStokes), components, blending, cmake
...@@ -14,6 +14,14 @@ quadrature = 0 ...@@ -14,6 +14,14 @@ quadrature = 0
loop-strategy = "cubes" loop-strategy = "cubes"
optimizations = ["moveconstants", "vectorize"] optimizations = ["moveconstants", "vectorize"]
[[diffusion]]
trial-space = "P2"
test-space = "P2"
dimensions = [2, 3]
quadrature = 2
loop-strategy = "cubes"
optimizations = ["moveconstants", "vectorize"]
[[div_k_grad]] [[div_k_grad]]
trial-space = "P1" trial-space = "P1"
test-space = "P1" test-space = "P1"
...@@ -40,6 +48,25 @@ quadrature = 2 ...@@ -40,6 +48,25 @@ quadrature = 2
loop-strategy = "sawtooth" loop-strategy = "sawtooth"
optimizations = ["moveconstants", "vectorize", "quadloops", "tabulate"] optimizations = ["moveconstants", "vectorize", "quadloops", "tabulate"]
[[divergence]]
trial-space = "P2"
test-space = "P1"
components = [0, 1, 2]
dimensions = [2, 3]
quadrature = 2
loop-strategy = "cubes"
optimizations = ["moveconstants", "vectorize"]
[[gradient]]
trial-space = "P1"
test-space = "P2"
components = [0, 1, 2]
dimensions = [2, 3]
quadrature = 2
loop-strategy = "cubes"
optimizations = ["moveconstants", "vectorize"]
[[epsilon]] [[epsilon]]
trial-space = "P2" trial-space = "P2"
test-space = "P2" test-space = "P2"
...@@ -58,7 +85,7 @@ components-trial = [0, 1, 2] ...@@ -58,7 +85,7 @@ components-trial = [0, 1, 2]
components-test = [0, 1, 2] components-test = [0, 1, 2]
form-space-args.coefficient_function_space = "P2" form-space-args.coefficient_function_space = "P2"
dimensions = [3] dimensions = [3]
quadrature = 2 quadrature = 3
loop-strategy = "sawtooth" loop-strategy = "sawtooth"
optimizations = ["moveconstants", "vectorize", "quadloops", "tabulate"] optimizations = ["moveconstants", "vectorize", "quadloops", "tabulate"]
blending = "IcosahedralShellMap" blending = "IcosahedralShellMap"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment