Skip to content
Snippets Groups Projects
Commit ef5ed708 authored by Marcus Mohr's avatar Marcus Mohr
Browse files

Generate 2D diffusion operator w/o blending for the P2PlusBubble FE space

parent c3424009
Branches improved_comm
No related tags found
1 merge request!26Draft: Ci/77667
Pipeline #77666 passed
Pipeline: hyteg-operators

#77667

    ...@@ -265,6 +265,7 @@ def generate_operator( ...@@ -265,6 +265,7 @@ def generate_operator(
    function_space.LagrangianFunctionSpace(2, symbolizer) function_space.LagrangianFunctionSpace(2, symbolizer)
    ), ),
    "N1E1": function_space.N1E1Space(symbolizer), "N1E1": function_space.N1E1Space(symbolizer),
    "P2PlusBubble": function_space.P2PlusBubbleSpace(symbolizer),
    } }
    geometries = { geometries = {
    2: element_geometry.TriangleElement(), 2: element_geometry.TriangleElement(),
    ......
    --extra-index-url https://test.pypi.org/simple/ --extra-index-url https://test.pypi.org/simple/
    # users with account on i10git.cs.fau.de can use ssh # users with account on i10git.cs.fau.de can use ssh
    # hog @ git+ssh://git@i10git.cs.fau.de/hyteg/hog@5cecb2d0c7cfb2449f80f6069a4fb6b4b3cb312d # hog @ git+ssh://git@i10git.cs.fau.de/hyteg/hog@480cb0b5363ea1f4ba2be14d6a91cde5e2ddbdd2
    # others should prefer https # others should prefer https
    hog @ git+https://i10git.cs.fau.de/hyteg/hog@5cecb2d0c7cfb2449f80f6069a4fb6b4b3cb312d hog @ git+https://i10git.cs.fau.de/hyteg/hog@480cb0b5363ea1f4ba2be14d6a91cde5e2ddbdd2
    tomli >= 1.1.0 ; python_version < "3.11" tomli >= 1.1.0 ; python_version < "3.11"
    clang-format clang-format
    ...@@ -23,6 +23,14 @@ quadrature = 2 ...@@ -23,6 +23,14 @@ quadrature = 2
    loop-strategy = "cubes" loop-strategy = "cubes"
    optimizations = ["moveconstants", "vectorize"] optimizations = ["moveconstants", "vectorize"]
    [[diffusion]]
    trial-space = "P2PlusBubble"
    test-space = "P2PlusBubble"
    dimensions = [2]
    quadrature = 4
    loop-strategy = "cubes"
    optimizations = ["moveconstants", "vectorize"]
    [[diffusion]] [[diffusion]]
    trial-space = "P2" trial-space = "P2"
    test-space = "P2" test-space = "P2"
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment