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
I haven't gone through all the details of BlockMultiFieldStyle and I'm struggling to figure out what can be going wrong. If you have some time, could you take a look at this error and point me to the right direction on how to fix this?
The text was updated successfully, but these errors were encountered:
Hi @oriolcg , I've pushed some fixes for your branch. Two things were failing:
First, there were dispatching issues. The assembler was not being created block-wise. This was due to the MultiFieldStyle not being correctly propagated from the transient FESpace to the single-time-point FESpaces spawned when calling Xb(t).
You also had some errors in the tests, where the integration data was not being created with the block-wise FESpaces. The FESpaces with which you integrate determine the assembly indices, which are different for BlockMultiFieldStyle (since we do not need to add offsets to the sub-space dof ids).
Everything should be working now. Let me know if you encounter any more issues.
Hi @JordiManyer and @amartinhuertas, I'm trying to extend the latest developments for
MultiFieldFESpaces
, e.g.MultiFieldStyle
, to the transient case. I created a new branch for this development: https://github.com/gridap/Gridap.jl/tree/Transient_MultifieldStyleWhen running the dedicated tests it seems that the matrices are well assembled, but the vector is not. I get a test fail in this line:
Gridap.jl/test/ODEsTests/TransientFEsTests/TransientBlockMultiFieldStyleTests.jl
Line 61 in 817cac1
I haven't gone through all the details of
BlockMultiFieldStyle
and I'm struggling to figure out what can be going wrong. If you have some time, could you take a look at this error and point me to the right direction on how to fix this?The text was updated successfully, but these errors were encountered: