Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cd lagrangian ref f es #299

Merged
merged 11 commits into from
Jun 29, 2020
2 changes: 1 addition & 1 deletion src/ReferenceFEs/CDLagrangianRefFEs.jl
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ const DISC = 1

function CDLagrangianRefFE(::Type{T},p::Polytope{D},order::Int,cont) where {T,D}
orders = tfill(order,Val{D}())
CDLagrangianRefFE(T,p,orders)
CDLagrangianRefFE(T,p,orders,cont)
end

function CDLagrangianRefFE(::Type{T},p::Polytope{D},orders,cont) where {T,D}
2 changes: 1 addition & 1 deletion test/FESpacesTests/CDLagrangianFESpacesTests.jl
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ trian = get_triangulation(model)
order = 1

T = Float64
reffe = CDLagrangianRefFE(T,QUAD,order)
reffe = CDLagrangianRefFE(T,QUAD,order,(CONT,DISC))
V = FESpace(model=model,reffe=reffe,dirichlet_tags = [1,6])
test_single_field_fe_space(V)