Marin Lauber

Results 15 issues of Marin Lauber

In the pressure [force integration](https://github.com/marinlauber/WaterLily/blob/33421ae7b53143c58c7741aced9461fecca44fc4/src/Metrics.jl#L83) the default is to use `t=0` for the body position, but this doesn't correspond to the pressure, which is stored at `time(sim)`. I think the...

This is a draft pull request that implements some changes in the pressure solver. A sample of the pressure solver log can be found here. [WaterLily.log](https://github.com/user-attachments/files/16029920/WaterLily.log) Changes: - add `@debug`...

This adds the examples previously in #113 and updates the README to list all available examples and provide a short desciption.

This pull request starts an effort to better benchmark and test the pressure solver in WaterLily. The idea is to have a test that is strict enough to ensure that...

**_This pull request is a work in progress._** I open it now to see how we can add parallel capabilities to `WaterLily.jl` efficiently, keeping in mind that ultimately we want...

enhancement
help wanted

This generalizes the `Bodies` type to hold any type of `AbstractBody`. This allows combining `AutoBody` with `ParametricBody`. Things to do: - [ ] fix bad measurements (missing the geom) when...

This pull request adds the capability of using space and time-varying inflow boundary conditions. The major change is that now the `U::Function` passed to the `Flow` is of the form...

I have been testing the `vtkWriter` since @ddeboerfluid had some issues with very large GPU simulations. ```julia using WaterLily,StaticArrays,CUDA,BiotSavartBCs,WriteVTK using TimerOutputs function make_sim_acc(; N=128, R=32, a=0.5, U=1, Re=1e3, mem=Array, T=Float32)...

Hi, I have spotted something strange when running the Calculi adapter. In my case, I use a simple Julia script to prescribe nodal values of the force to Calculix based...

This PR adds the capability to load `.inp` files, which can be generated by gmsh and are often used with CalculiX/Abaqus. I've opened a PR in JuliaIO/FileIO.jl to register the...