Francesc Verdugo

Results 198 comments of Francesc Verdugo

Hi @rveltz and @santiagobadia Here, I provide a small example on how to eficiently solve a parameter-dependent problem by reusing as much data as possible between the solution of different...

@rveltz, now, you can define the functions you need for bifurcation as follows: ```julia using Gridap.FESpaces function F(u,p) op = op_from_param(p) algop = get_algebraic_operator(op) r = residual(algop,u) r end function...

To check if removing of `FESolver` will cause trouble in `GridapODEs` cc @oriolcg

@nannaberre some update: I have identified the cause of the problem, but there is no quick fix for this. This would require some work.

@bhaveshshrimali Yes, it is easy to add new finite elements in Gridap, the code is designed to do this (and other) extensions. It would be very nice if you can...

Allow setting values in a table using the standard julia interface of vector of vectors I.e., ```julia a = Table(....) a[i][j] ```

@santiagobadia @amartinhuertas I have developed these simple benchmarks to check the performance hit of using views when indexing a table ```julia module KK struct Table{Vd,Vp} data::Vd ptrs::Vp end @inline function...

Hi @learning-chip, great initiative to port examples from MFEM! Before deciding which is the best option, I wonder if the .mesh or .vtk files coming from MFEM contain all the...

Then, It seems to contain all info we need. If the .mesh format it is not very complex and it is well documented, perhaps a Julia parser is a good...