Carlos Andres del Valle

Results 17 comments of Carlos Andres del Valle

I see thanks, I have a couple of questions. 1. What numerical method do you use to solve the Navier Stokes equations? 2. Would it be possible to couple the...

I see, thanks a lot. I will evaluate what to do. Nevertheless, I love this protect, I would love to see this library do complete fluid dynamics simulations, including variable...

Hi @mlstowell, I'm using Linux. OS = Pop!_OS 22.04 LTS; CPU = Intel i5-1135G7; GCC 11.2.0; superlu-dist-7.2.0; mfem-4.4.0; My MFEM installation was done with spack with the following command `spack...

Hi @tzanio, @mlstowell. I run multiple tests and have some information that may help to pinpoint the problem. I build different versions of mfem with different versions of SuperLU and...

Hi @miaodi What you could do is define a new variable and split your 4rth order equation into 2 second-order equations as described here https://mfem.org/fem_weak_form/ in the section Other Types...

Update, I tried to load the GridFunctionon each core and then create the ParGrid. Like this ``` for (int i = 0; i < Mpi::WorldSize(); ++i) { if(Mpi::WorldRank()==i){ mfem::ifgzstream ifs("Velocity.txt");...

@termi-official thank you for your answer. But that means that if I generate the partition with an 8-core computer and then I want to use 12 cores I would have...

@tzanio. Should we have a function on MFEM capable of loading a serial mesh and doing the spatial distribution?

To complement this @xiaoyeli , I have been searching for a potential solution and found this http://www.elmerfem.org/forum/viewtopic.php?t=3625. I also have found people reporting similar leaks.

Thanks, @forxltk. I made your correction and it works fine. I don't know how I missed that.