++--------------------------------------------++ Dr. Thomas Wick Research Scientist at RICAM Linz, Austria Email: thoma...@ricam.oeaw.ac.at www: http://people.ricam.oeaw.ac.at/t.wick/ ++--------------------------------------------++ --
--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see https://groups.google.com/d/forum/dealii?hl=en
---
You received this message because you are subscribed to the Google Groups "deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dealii+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
++--------------------------------------------++ Dr. Thomas Wick Research Scientist at RICAM Linz, Austria Email: thoma...@ricam.oeaw.ac.at www: http://people.ricam.oeaw.ac.at/t.wick/ ++--------------------------------------------++ --
++--------------------------------------------++ Dr. Thomas Wick Research Scientist at RICAM Linz, Austria Email: thoma...@ricam.oeaw.ac.at www: http://people.ricam.oeaw.ac.at/t.wick/ ++--------------------------------------------++ --
For the steady case, with Re=20, it's not off by much. It should be in the range 0.0104 to 0.0110 and it is 0.0093. When I go to higher Reynolds numbers though, for example the periodic Re=100, it is off by quite a lot (it should vary between around -1 and 1 and instead it's around 20). This does seem to be very sensitive to mesh and timestep sizes though. My timestepping scheme is only first order, could that be the problem?
Thanks again,
Lukas
I am trying to replicate the results here of the benchmark problem of flow around a cylinder (circle in 2D). Here is my code so far:
Hi Jie,
One needs to move some of the vertices around. I have some code that does generate this geometry in one of my projects:
https://github.com/kronbichler/adaflo/blob/master/tests/flow_past_cylinder.cc
(check the create_triangulation function)
The mesh that comes out from this code is accurate but not optimal yet it is not fine enough around the cylinder as compared to be bulk of the domain, at least for some of the benchmark test cases. You can find a picture which gives better convergence results in our recent publication (Fig 11):
http://www.sciencedirect.com/science/article/pii/S0021999117306915
However, I do not have that code online right now and it takes too much time to look it up. But it should be easy enough to compose it of several triangulation, adding the transfinite interpolation manifold to the transition from polar->straight elements that we recently introduced in the deal.II and that is mentioned in that paper.
Best,
Martin