Skip to content

Commit

Permalink
remove onboundary in helmholz
Browse files Browse the repository at this point in the history
  • Loading branch information
KnutAM authored Aug 30, 2022
1 parent fc1cc0c commit ec46db1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/src/literate/helmholtz.jl
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,8 @@ function doassemble(cellvalues::CellScalarValues{dim}, facevalues::FaceScalarVal
# ```
#+
for face in 1:nfaces(cell)
if onboundary(cell, face) &&
((cellcount, face) getfaceset(grid, "left") ||
(cellcount, face) getfaceset(grid, "bottom"))
if (cellcount, face) getfaceset(grid, "left") ||
(cellcount, face) getfaceset(grid, "bottom")
reinit!(facevalues, cell, face)
for q_point in 1:getnquadpoints(facevalues)
coords_qp = spatial_coordinate(facevalues, q_point, coords)
Expand Down

0 comments on commit ec46db1

Please sign in to comment.