You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another useful feature would be to combine multiplication by a diagonal matrix and interpolation. Currently, the operation t2 = [Nx*R, Ny*R, Nz*R]*t1 has to be done in 2 steps: tmp = [Nx*R*t1, Ny*R*t1, Nz*R*t1]; t2 = R*tmp. Combining these into a single operation would remove the need for a temporary array tmp, which could be significant for the jacobian calculation, where tmp may be somewhat large.
There are a couple of functions that users of SummationByParts could use to make the viscous terms faster:
differentiateElementR
that computes only the elements ofuprime = Dx * u
that will be used for volume to face interpolationsbpface.perm
might do this, but I'm not sure if that is correct forSparseFace
. I'm also not sure if it is sorted.I don't need these functions in the short term, this issue is for future reference.
The text was updated successfully, but these errors were encountered: