We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Error happens here:
Ferrite.jl/src/Dofs/ConstraintHandler.jl
Line 911 in 9de9677
dbc.faces
Set{Int}
Set{Tuple{Int,Int}}
Repro:
grid = generate_grid(Line, (2,)) dh = MixedDofHandler(grid) push!(dh, :u, 2) close!(dh) ch = ConstraintHandler(dh) add!(ch, Dirichlet(:u, Set(1), x -> 0))
The text was updated successfully, but these errors were encountered:
Fix Dirichlet cellset check, fixes #593 (#594)
6259e01
KnutAM
Successfully merging a pull request may close this issue.
Error happens here:
Ferrite.jl/src/Dofs/ConstraintHandler.jl
Line 911 in 9de9677
dbc.faces
is justSet{Int}
and notSet{Tuple{Int,Int}}
then.Repro:
The text was updated successfully, but these errors were encountered: