Skip to content

Commit

Permalink
Minor fix to previous
Browse files Browse the repository at this point in the history
  • Loading branch information
raback committed Nov 14, 2024
1 parent 99c7550 commit df4f298
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fem/src/ElementUtils.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3523,7 +3523,8 @@ END SUBROUTINE Ip2DgFieldInElement
! We do not need P-elements if the value is to be found in node since
! the higher order p-basis does not have any effect there.
pElem = .FALSE.
IF(.NOT. PRESENT(LocalNode)) THEN
IF(PRESENT(LocalCoord)) THEN
! IF(.NOT. PRESENT(LocalNode)) THEN
IF(ASSOCIATED(Var % Solver)) THEN
pElem = isActivePElement(Element, Var % Solver)
END IF
Expand Down

0 comments on commit df4f298

Please sign in to comment.