|
[Sponsors] |
May 5, 2020, 16:54 |
Wall-Modeled LES Strange Behavior Near Wall
|
#1 |
Member
Sereff
Join Date: Jan 2019
Posts: 49
Rep Power: 7 |
Greetings everyone,
I am trying to use Wall Modeled LES (Smagorinsky, damping function included) to simulate a boundary flow and I noticed some wierd behavior at the first few cells near the wall. I have attached the plots I processed from my results. They are time and space averages from a full-developed boundary flow. The geometry of my case are: > 6282m*1000m*3141m (x,y,z) > resolution: 64*64*64 (x,y,z) > cyclic BCs on x and z direction > y is the vertical direction and ground is with a surface roughness of 0.1m I have the following BCs on y direction for U, p and nut Code:
U: upperAtm: zeroGradient; ground: noSlip; p: upperAtm: zeroGradient; ground: zeroGradient; nut: upperAtm: zeroGradient; ground: nutURoughWallFunction; roughnessConstant 0.5; roughnessHeight 3.0; // Ks = (20~30)*y0 roughnessFactor 1.0; Can anyone give me some hints? Any suggestion is deeply appreciated. kind regards, |
|
May 12, 2020, 14:49 |
|
#2 |
Senior Member
Herpes Free Engineer
Join Date: Sep 2019
Location: The Home Under The Ground with the Lost Boys
Posts: 931
Rep Power: 13 |
Hi,
- Is it possible for you plot "y+" instead of "y/H" in the vertical direction, please? - Could you please compute min/max y1+ values for the walls? - Have you seen the kink in your visualisations of the field? May be it is just a problem in sampling? Hope it helps.
__________________
The OpenFOAM community is the biggest contributor to OpenFOAM: User guide/Wiki-1/Wiki-2/Code guide/Code Wiki/Journal Nilsson/Guerrero/Holzinger/Holzmann/Nagy/Santos/Nozaki/Jasak/Primer Governance Bugs/Features: OpenFOAM (ESI-OpenCFD-Trademark) Bugs/Features: FOAM-Extend (Wikki-FSB) Bugs: OpenFOAM.org How to create a MWE New: Forkable OpenFOAM mirror |
|
May 17, 2020, 07:14 |
|
#3 |
Member
Sereff
Join Date: Jan 2019
Posts: 49
Rep Power: 7 |
Hi HPE,
Thank you for your reply. To answer your question, I have checked all my plotting and averaging scripts. They are working properly. And the y1+ is somewhere around 420k. 1. The zig-zag shape for nut plot would go away once I switched to vanDriest for delta in turbulenceProperties, However I doubt this is the correct way to do so since van Driest damping function is irrelevant for wall-modelled LES. 2. Regarding the mismatch of velocity profile at near wall region, it seems to be a very well known issue for LES of high-Reynolds-number wall-bounded flows. Here is an article that describe the overshoot problem. I am still struggling resolving it for standard Smagorinsky model. The article claims that DES models are able to avoid the overshoot to some extend however DES is not implemented for DPMFoam. kind regards, |
|
May 18, 2020, 17:34 |
|
#4 |
Senior Member
Herpes Free Engineer
Join Date: Sep 2019
Location: The Home Under The Ground with the Lost Boys
Posts: 931
Rep Power: 13 |
Hi,
- The y1+ is extremely high. It must be at least on the order of O(100), preferably ~30 for a zero pressure gradient boundary. I bet whatever deem problematic stems from this. - van Driest is a damping function of nut towards walls - hence relevant. It seems that whatever you are not able to do with wall modelling can be performed by the analytical damping detached from numerical predictions of the flow. Hope this helps.
__________________
The OpenFOAM community is the biggest contributor to OpenFOAM: User guide/Wiki-1/Wiki-2/Code guide/Code Wiki/Journal Nilsson/Guerrero/Holzinger/Holzmann/Nagy/Santos/Nozaki/Jasak/Primer Governance Bugs/Features: OpenFOAM (ESI-OpenCFD-Trademark) Bugs/Features: FOAM-Extend (Wikki-FSB) Bugs: OpenFOAM.org How to create a MWE New: Forkable OpenFOAM mirror |
|
May 18, 2020, 18:07 |
|
#5 |
Member
Sereff
Join Date: Jan 2019
Posts: 49
Rep Power: 7 |
Hi,
Thank you again for you pathient reply and kind help. I can't say anything about your first comment for now regarding the y+ issue until I change my mesh setups. And now you mention that, the 'zeroGradient' BC for pressure at a such high y+ DOES seem unphysical. I will try to do some more search on this issue. As for you second comment, I think I didn't put my words wisely in my last comment. From what I read in Mason & Thomson's paper in 1992, and also from my supervisor, the van Driest damping function is not the correct one to utilize in a wall-modeled LES. Finally, I am sorry this mght be stupid, but I don't quite get what do you mean by " the analytical damping detached from numerical predictions of the flow". Would you mind to elabrate a bit more? Kind regards, |
|
May 18, 2020, 18:16 |
|
#6 |
Senior Member
Herpes Free Engineer
Join Date: Sep 2019
Location: The Home Under The Ground with the Lost Boys
Posts: 931
Rep Power: 13 |
Hi,
- " the analytical damping detached from numerical predictions of the flow". Sorry my bad. - What I meant in a very horrible way was that van Driest function is an semi-empirical function calibrated with canonical flows, and its behaviour is independent of the computed flow variables within your simulation. For van Driest function, the only important independent variable is the normal distance to a wall boundary, hence however your simulation is bad away from the walls, it will smoothly damp the free-wall quantities towards the wall - hence expected or plausible wall flow predictions from your simulation (these remarks are speculations since I don't know your setup details). - Your supervisor is also right - but sometimes these heuristic/empirical function work like charm. There has been updates to van Driest function as well, e.g. Piomelli's damping function. Have a go, if need be. - For y1+, what I meant was that the wall-normal height of the first grid in your simulation, 420 thousand, is very very high. May be it was just a typo that you wrote 420k instead of 420 above. But if 420k is what you get - you need to refine your grid towards the wall for your wall function operates within its design limits. Hope these help.
__________________
The OpenFOAM community is the biggest contributor to OpenFOAM: User guide/Wiki-1/Wiki-2/Code guide/Code Wiki/Journal Nilsson/Guerrero/Holzinger/Holzmann/Nagy/Santos/Nozaki/Jasak/Primer Governance Bugs/Features: OpenFOAM (ESI-OpenCFD-Trademark) Bugs/Features: FOAM-Extend (Wikki-FSB) Bugs: OpenFOAM.org How to create a MWE New: Forkable OpenFOAM mirror |
|
May 21, 2020, 17:27 |
|
#7 |
Member
Sereff
Join Date: Jan 2019
Posts: 49
Rep Power: 7 |
Hi HPE,
Thank you for your advise, and I'm here to kill more of your time :P I have tried to make y+ in the range of few hunered but it seems that it didn't really help. The velocity profile maintained the same trend at the lower 20% of the domain. I kepted tweaking the coefficient of Mason&Thomson Dmaping function but it seems it can only do so much (see attactchment MT_UsemiPlus.png). Now I am moving to dynLagrangian model, which is a variation of dynamic Smagorinsky model (lagrangian averaged scale dependent model). The problem is there is no clear tutorial or documentation on how to implement this model. Here Cs = flm/fmm dynamically and I need to initialise flm and fmm (initial values and boundary conditions). I did the following Code:
flm internalField uniform 1e-6; upperAtm zeroGradient; ground fixedValue uniform 0; fmm internalField uniform 1e-4; upperAtm zeroGradient; ground zeroGradient; kind regards, |
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Centrifugal fan | j0hnny | CFX | 13 | October 1, 2019 14:55 |
What's the problem with turbulence models near the wall region? | Jaydi_21 | Main CFD Forum | 6 | July 7, 2017 03:39 |
Grid difference between wall modeled LES and wall resolved LES | hityangsir | Main CFD Forum | 9 | April 17, 2015 12:59 |
Difficulty In Setting Boundary Conditions | Moinul Haque | CFX | 4 | November 25, 2014 18:30 |
Strange behaviour on outlet boundary using LES | segersson | OpenFOAM Running, Solving & CFD | 0 | December 9, 2009 04:57 |