Skip to content

Commit 1cdf548

Browse files
committed
Add L2_HIERARCHIC PRISM support
1 parent 8ac31e9 commit 1cdf548

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/fe/fe_l2_hierarchic.C

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,12 @@ unsigned int l2_hierarchic_n_dofs(const ElemType t, const Order o)
117117
case HEX20:
118118
case HEX27:
119119
return ((o+1)*(o+1)*(o+1));
120+
case PRISM6:
121+
case PRISM15:
122+
case PRISM18:
123+
case PRISM20:
124+
case PRISM21:
125+
return ((o+1)*(o+1)*(o+2)/2);
120126
case TRI3:
121127
case TRI6:
122128
case TRI7:

0 commit comments

Comments
 (0)