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
We want to be able to assemble the bilinear form $\int_{\Omega} (\boldsymbol{b} \times \boldsymbol{u}) \cdot \boldsymbol{v} d \boldsymbol{x}$ using the cross product matrix.
Fixing this bug will allow us to use the matrix as intended BilinearForm((u, v), integral(domain, dot(S*u, v))), instead of having to type the expression component by component.
The algebraic operators
dot
,cross
,inner
andouter
do not handle correctlyMatrix
objects from sympy.We consider the following
Then all the following operations lead to the same error
The problem comes from the same piece of code when treating the
Mul
objects;The text was updated successfully, but these errors were encountered: