Skip to content
New issue

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

Use TensorProductQuadrature instead of Quadrature in TensorProductElementGroupBase #436

Merged
merged 7 commits into from
Oct 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions meshmode/discretization/poly_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,12 +525,14 @@ def basis_obj(self):

@memoize_method
def quadrature_rule(self):
basis = self._basis
nodes = self._nodes
basis = self._basis.bases[0]
nodes = self.unit_nodes_1d
mass_matrix = mp.mass_matrix(basis, nodes)
weights = np.dot(mass_matrix,
np.ones(len(basis.functions)))
return mp.Quadrature(nodes, weights, exact_to=self.order)
quads = (mp.Quadrature(nodes, weights, exact_to=self.order),)*self.dim

return mp.TensorProductQuadrature(quads)
alexfikl marked this conversation as resolved.
Show resolved Hide resolved
a-alveyblanc marked this conversation as resolved.
Show resolved Hide resolved

@property
@memoize_method
Expand Down
Loading