Thibaut Lunet

Results 12 issues of Thibaut Lunet

To follow up on the discussion started in https://github.com/Parallel-in-Time/pySDC/commit/04fdedc56e52258fa88ea98aae5602d5944fc7c0#r138624434, @brownbaerchen @lisawim (and also centralize all that have been done on this topic, don't hesitate to complement the description ...) Workspace...

Recently, conda decided to switch per default to the mamba solver in their new version, to avoid the known speed issue of the classical solver when solving big environments :...

enhancement
question

Following a template applied to the [advectionNd](https://github.com/Parallel-in-Time/pySDC/blob/v6/pySDC/implementations/problem_classes/AdvectionEquation_ND_FD.py) problem class, rework all other implementations to get to the same standards : - [x] use of the default parameter approach and inheritance...

enhancement

Following _this discussion originally posted by @brownbaerchen in https://github.com/Parallel-in-Time/pySDC/discussions/179_. It could be find a system that allows the use of Jupyter notebook for tutorials and project documentation, while still include...

enhancement

Following discussion #253, set a more generic interface for the problem class for more generic ODE, with a default implementation considering the simple generic ODE system ```math \frac{dU}{dt} = f(U,t)...

enhancement

Currently, there are a few tests that take quite a long time. For instance, pySDC/tests/test_projects/test_TOMS/test_AllenCahn_contracting_circle.py::test_AllenCahn_contracting_circle takes quite some time using all available computation processes. Usually this happen when testing projects....

enhancement

Hi, I'm currently using Dedalus to generate RBC data for a project, using different Rayleigh numbers, based on the [example script on the website](https://dedalus-project.readthedocs.io/en/latest/pages/examples/ivp_2d_rayleigh_benard.html). **Problem** : I have currently some...

Hi, consider this markdown example ```md # Some equations $$ \begin{array}{c|c} \tau & Q \\ \hline & w^\top \end{array} $$ ``` then converting it like this : ```python html =...

Remove the for loop with `mpi_write_at_all` to use only one write with a sub-array view. In particular, it avoids the need of the nCollectiveIO stuff, and makes the code way...

Following discussion in #533. Here is a first TODO list : - [ ] Description of the base native data IO structure in the documentation - [ ] Hook class...

enhancement