Jordi Manyer Fuertes
Jordi Manyer Fuertes
Yep. Normally, we call `return_type`. The issue is that `return_type` is generally not implemented, so the default `typeof(return_value(k,args...))` is triggered. This is also generally not implemented, which triggers `evaluate(k,args...)`. Moreover,...
On the difference between FullyAssembledRows/SubAssembledRows: One thing that comes to mind is that the former returns local BoundaryTriangulations, whereas the former has TriangulationView{BoundaryTriangulation}. This should affect the underlying integrals. I...
I would try something along the lines of ```julia uh = solve(...) n = get_normal_vector(Γ) u_N = ∇(uh)⋅n ``` which returns a `CellField` on `Γ` that you can evaluate on...
> Is there a way to make enforce sum zero as an option in Gridap? Yes, it's the `:zerosum` constraint (`ZeroMeanFESpace`). It does not work for spaces with dirichlet BCs,...
Hi @rpetit, the `FineToCoarseRefFE` is in the process of being completely overhauled. The current implementation probably doesn't really work at all (it was a toy concept). The changes will probably...
@rpetit the new release has the changes I mentioned. You can now do those things using MacroElements.
Are you using MPI as an artifact (jll) or your own system binary?
It is weird though, since to my knowledge there is nothing in GridapGmsh working with MPI. We even partition the mesh in serial, not in parallel.
Ok, I'll try to have a look.
So we concluded that this existed in v0.1, but was forgotten during the refactoring for v0.2.