Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiManyer committed Nov 26, 2024
1 parent badc082 commit a7f675c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions src/parameters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,11 @@ const FLUID_DISCRETIZATIONS = (;
:p_conformity => :H1,
:p_order => (k) -> k-1,
),
:RT => (; # Raviart-Thomas
:p_space => :Q,
:p_conformity => :L2,
:p_order => (k) -> k-1,
),
),
:TET => (; # Tetrahedra
:Pk_Pkm1 => (; # Taylor Hood
Expand All @@ -395,6 +400,21 @@ const FLUID_DISCRETIZATIONS = (;
)
)

function get_fluid_reffe_pair(disc::Symbol,poly::Polytope,feparams)
if poly == HEX

if disc == :Qk_dPkm1

else

end
elseif poly == TET

else
@notimplemented "Only HEX and TET supported for now."
end
end

"""
const CURRENT_DISCRETIZATIONS
Expand Down
2 changes: 1 addition & 1 deletion test/seq/channel_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ solver = Dict(
channel(
nc=(4,2,2),
order = 3,
order_j = 4,
order_j = 3,
L = 2.0,
w = 1.0,
ζ = 50.0,
Expand Down

0 comments on commit a7f675c

Please sign in to comment.