Rubén Zorrilla

Results 144 comments of Rubén Zorrilla

> We cannot add tetgen to the repository. Those files should be removed. Tetgen options must be activated so that it gets downloaded and compiled automatically. I thought that was...

Closing as suggested by @rlrangel.

Merging as I need to do some modifications which will conflict this.

As @AlejandroCornejo mentioned, Kratos is able to solve this kind of problem. However, traditionally we applied PFEM rather than SPH (pinging @AFranci in this regard). In any case, there are...

> `stage_initializer_list` and `stage_finalizer_list` keys must be renamed to `operations`. This makes possible to use the same mechanism that we use to instantiate the processes right now.

Today's conclusions: 1. First part of `Initialize` function in base `AnalysisStage` must be ```py self._CreateModelers() #FIXME: MODELERS CREATE THE MODEL PARTS (e.g. FluidModelPart, ThermalModelPart, Structure) self._GetSolver().AddVariables() self._ModelersSetupGeometryModel() self._ModelersPrepareGeometryModel() self._ModelersSetupModelPart() #FIXME:...

Dear @KratosMultiphysics/all, This is a reminder to the attendees to register. Note that event has a limited number of places and we are close to run out of them.

Technically means capturing by reference all the variables in the scope where the lambda is defined, so it shouldn't be that bad. I agree that only the required ones must...

> > Technically means capturing by reference all the variables in the scope where the lambda is defined, so it shouldn't be that bad. I agree that only the required...

> What I'm more worried about is converting lambdas to `std::function`s. `std::function` is **MUCH** slower than an equivalent lambda or raw function call, and I see it getting used in...