We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
elementwise_integral
As implemented here:
grudge/grudge/reductions.py
Lines 455 to 470 in f3d986b
It always falls into the mass-matrix logic, which is valid for nodal-interpolatory grids, but not quadrature grids.
cc @thomasgibson
The text was updated successfully, but these errors were encountered:
Could implement, per group, as:
res = DOFArray( dof_array.array_context, tuple([ actx.np.einsum("ei,i,ei->e", dof_array.data[i], quad_weights, area_elements.data[i] ).reshape(-1, 1) for grp, vec_grp_ary, ae_grp_ary in zip( discr.groups, vec.data, area_elements.data ])
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
As implemented here:
grudge/grudge/reductions.py
Lines 455 to 470 in f3d986b
It always falls into the mass-matrix logic, which is valid for nodal-interpolatory grids, but not quadrature grids.
cc @thomasgibson
The text was updated successfully, but these errors were encountered: