-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
08_navier_stokes_cylinder #5
Comments
There's an issue about this over at hplgit/fenics-tutorial#51. |
That was about the line Myself, I first tried replacing set_log_level(16) but that didn't work either so I just commented it out and did without logging. |
I had successfully modified this to run in the Docker image but now with FEniCS installed locally on Ubuntu 19.10 with conda create -n FEniCS -c conda-forge fenics it failed with
|
Installing mshr #11: conda install -c conda-forge mshr |
So how does 08 differ from 07 Navier–Stokes channel #4?
|
But the pressure-correction algorithm is the same. |
I presume that iterative solvers aren't really required for the problem as meshed—it's only 4585 triangles—but are rather given as a suggestion for larger more realistic problems. |
Isn't the pressure-correction step symmetric? Why is the unsymmetric Bi-CGStab scheme adopted? |
The velocity isn't written as a vector to the XDMF time series nschloe/meshio#522. |
The original FEniCS tutorial uses HYPRE AMG accelerated by BiCG-Stab for the tentative velocity and pressure correction steps. I assume these are via PETSc. We could make use of petsc4py here (see kinnala/scikit-fem#236) but excellent results are also obtained much more simply with pyamgcl. Figure:— Plot of the velocity (coloured by pressure) for the cylinder test problem at final time |
Next after 07_navier_stokes_channel #4 is ft08_navier_stokes_cylinder.
The text was updated successfully, but these errors were encountered: