Skip to content

Commit

Permalink
Remove further orthonormals
Browse files Browse the repository at this point in the history
  • Loading branch information
indiamai committed Jan 23, 2025
1 parent 8d52e22 commit 8eaa60c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FIAT/nedelec.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def NedelecSpace2D(ref_el, degree):
for i in range(sd))))
vec_Pk_from_Pkp1 = vec_Pkp1.take(vec_Pk_indices)

Pkp1 = polynomial_set.ONPolynomialSet(ref_el, k + 1, scale="orthonormal")
Pkp1 = polynomial_set.ONPolynomialSet(ref_el, k + 1)
PkH = Pkp1.take(list(range(dimPkm1, dimPk)))

Q = create_quadrature(ref_el, 2 * (k + 1))
Expand Down
2 changes: 1 addition & 1 deletion FIAT/raviart_thomas.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def RTSpace(ref_el, degree):
for i in range(sd))))
vec_Pk_from_Pkp1 = vec_Pkp1.take(vec_Pk_indices)

Pkp1 = polynomial_set.ONPolynomialSet(ref_el, k + 1, scale="orthonormal")
Pkp1 = polynomial_set.ONPolynomialSet(ref_el, k + 1)
PkH = Pkp1.take(list(range(dimPkm1, dimPk)))

Q = create_quadrature(ref_el, 2 * (k + 1))
Expand Down

0 comments on commit 8eaa60c

Please sign in to comment.