Francis J. Poulin
Francis J. Poulin
First, thank you very much for putting this together and sharing it. Second, I have a question on how I can use your library with another library, FEniCS: https://fenics.readthedocs.io/projects/containers/en/latest/jupyter.html The...
Inspired by trying to resolve #1866, I have been looking over `shallow_water_advection_operators.jl`. The first cocern is with[ line 22.](https://github.com/CliMA/Oceananigans.jl/blob/e76deefc1fdf115e05856a18977c593d0b5d3b0d/src/Models/ShallowWaterModels/shallow_water_advection_operators.jl#L22) . We are trying to discretize a term the term $\partial_x...
For run, I just ran `barotropic_gyre.jl` found [here](https://github.com/CliMA/Oceananigans.jl/blob/main/validation/barotropic_gyre/barotropic_gyre.jl). The simulation part ran nicely but when it came to visualization I got the following error. I guess the plotting needs to...
A few days ago I had suggested creating jupyter notebooks for all of the examples. Is there any interest in doing this? If yes I think it would be easy...
Following [Adroft et al. (1997)](https://journals.ametsoc.org/view/journals/mwre/125/9/1520-0493_1997_125_2293_rotbsc_2.0.co_2.xml), we are developing a **partial cell method** in the following branch: fjp/partial_cell_immersed_boundaries Presently, we can build the mesh without any complaints, but nothing else. I...
Hello Mikael, I have tested the scalability of my 2D Navier-Stokes (shared in another issue) code and find that it's not doing great. It seems to get worst as the...
I can happily say that all the tests pass without any optimization. Today I tried with cython and numba. The good news is that with numba they all pass. The...
I am modifying **dirichlet_poisson2D.py** to solve a different example and I'm having some difficulties. Maybe it has to do with the fact that my right-hand-side, f, is independent of one...
I am looking at the docs and see that Function and Array also needs to be imported for the example to execute. from shenfun import Basis, **Function, Array** N =...
I see that since last time I downloaded this you added the MPI into the 2D problem. That is a great help. I wanted to try running the code but...